body { font-family: 'Comfortaa', sans-serif; background-color: #f7f9fc; margin: 0; padding: 0; color: #2d2f33; display: flex; flex-direction: column; min-height: 100vh; } h2 { margin: 12px; } .text { padding-left: 15px; }
@font-face { font-family: 'Comfortaa'; src: url("fonts/Comfortaa-VariableFont_wght.woff") format('woff'), url('fonts/Comfortaa-VariableFont_wght.ttf') format('truetype'); } .container .login-container { width: 99%; display: flex; margin: 5px; }
.header, .footer {
    background: linear-gradient(135deg, #364f6b, #3b6978);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #f5f5f5;
}
.header {
    justify-content: space-between;
    position: sticky;
    top: 0;
    min-height: 70px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.header-title, .footer-text {
    margin: 0;
    font-weight: 700;
}
.header-title {
    align-items: center;
    justify-content: center;
    display: flex;
    margin: 5px;
}
.header-logo {
    width: 55px;
    height: 55px;
    margin: 4px;
    display: block;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, filter 0.3s ease-in-out;
}
.header-logo:hover {
    transform: scale(1.15);
    opacity: 0.9;
    filter: drop-shadow(0 0 4px rgba(133, 221, 248, 0.7));
}
.header-logo-link .footer-link {
    color: #a8dadc;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}
.footer-link:hover {
    color: #f5f5f5;
    text-shadow: 0 0 10px rgba(245, 245, 245, 0.7);
}
.header-link {
    padding-top: 2px;
    margin: 5px;
    font-size: 30px;
    font-weight: 700;
    color: #f5f5f5;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}
.header-link:hover {
    color: #a8dadc;
    text-shadow: 0 0 10px rgba(168, 218, 220, 0.7);
}
.nav-list {
    list-style: none;
    padding-right: 12px;
    display: flex;
    gap: 12px;
    margin: 6px;
    align-items: center;
}
.nav-link, .logout-button {
    font-size: 18px;
    color: #f5f5f5;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    position: relative;
    display: inline-block;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.nav-link::before, .logout-button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #a8dadc;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}
.nav-link:hover::before, .logout-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}
.nav-link:hover, .logout-button:hover {
    color: #a8dadc;
    transform: translateY(-3px);
}
.auth-container { flex-direction: column; display: flex; align-items: center; justify-content: center; height: 100%; flex: 1; width: 100%; padding: 20px; box-sizing: border-box; }
.auth-container h1 { color: #333; font-size: 2rem; margin-bottom: 1rem; text-align: center; } .auth-container p { color: #666; font-size: 1rem; text-align: center; } .auth-container a { color: #4A90E2; text-decoration: none; transition: color 0.3s; } .auth-container a:hover { color: #007ACC; }
.auth-container .auth-input { padding: 12px; font-size: 1rem; border: 1px solid #CCCCCC; border-radius: 6px; width: 100%; max-width: 400px; margin: 8px 0; box-sizing: border-box; transition: border-color 0.3s, box-shadow 0.3s; } .auth-container .auth-input:focus { border-color: #4A90E2; box-shadow: 0 0 5px rgba(74, 144, 226, 0.3); outline: none; }
.auth-container .auth-button { padding: 12px 24px; font-size: 1rem; font-weight: bold; color: #FFFFFF; background: linear-gradient(135deg, #518a9d, #496b91); transition: background 0.3s ease, transform 0.2s ease; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); border: none; border-radius: 6px; cursor: pointer; margin-top: 20px; margin-bottom: 10px; width: 100%; max-width: 400px; } .auth-container .auth-button:hover { transform: translateY(-2px); box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); background: linear-gradient(135deg, #496b91, #518a9d); } .auth-container .auth-button:active { transform: translateY(0); box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
.auth-container .forgot-password-button { background: none; border: none; color: #4A90E2; cursor: pointer; font-size: 0.9rem; margin-top: 10px; padding: 0; text-align: center; width: 100%; max-width: 400px; transition: color 0.3s; } .auth-container .forgot-password-button:hover { color: #007ACC; }
.auth-container .error-message { color: #dc3545; background-color: #f8d7da; border: 1px solid #f5c6cb; padding: 0.75rem; border-radius: 4px; margin-bottom: 1rem; text-align: center; width: 100%; max-width: 400px; }
.account-container { max-width: 600px; margin: 20px auto; padding: 20px; background-color: #fff; border-radius: 8px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); } .account-container h1 { text-align: center; color: #333; margin-bottom: 20px; }
.account-container h2 { color: #555; margin-bottom: 15px; } .account-info { margin-bottom: 20px; } .account-info p { font-size: 1.1rem; color: #666; margin: 10px 0; } .account-info p strong { color: #333; }
.h2-policy, .h3-policy-last-update, .p-policy-info { align-items: center; justify-content: center; display: flex; } .p-policy-info { text-align: center; } .news-list, .policy-container { margin: 10px; }
.footer { background-color: #364f6b; font-size: 14px; box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1); margin-top: auto; min-height: 35px; position: relative; bottom: 0; width: 100%; display: flex; align-items: center; color: #f5f5f5; justify-content: space-between; }
.l-footer-list { margin-right: auto; } .r-footer-list { margin-left: auto; } .l-footer-item, .r-footer-item { margin: 4px; } .l-footer-link .r-footer-link { font-size: 10px; padding: 4px; align-items: center; justify-content: center; text-decoration: none; display: flex; color: #f5f5f5; transition: color 0.3s; } .footer-img { width: 34px; height: 34px; margin: 4px; display: block; transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, filter 0.3s ease-in-out; } .footer-img:hover { transform: scale(1.15); opacity: 0.9; filter: drop-shadow(0 0 4px rgba(133, 221, 248, 0.7)); }
.news-container { display: flex; flex-direction: column; margin: 12px; } .news-ul-list{margin: 0; padding: 0;} .news-item { display: flex; flex-direction: column; margin: 5px; } .news-title	{ font-size: 20px; font-weight: bold; margin: 7px;} .news-text { font-size: 16px; margin: 7px; padding-left: 6px; } .news-date { font-size: 10px; margin: 8px; } .h2-news { font-size: 24px; margin: 4px; } .hello-news-text { margin: 6px; } .news-list { margin: 6px;}
.error-type-h1{color:red;font-size:50px;text-align:center;} .error-type-h2{font-size:3rem;margin:0;} .error-message {font-size:1.2rem;margin:14px 0;} .error-home-link:hover{background-color:#3fc1c9;color:#364f6b;} .error-container{font-family:Arial,sans-serif;width:100%;height:100vh;justify-content:center;align-items:center;text-align:center;flex-direction:column;display:flex;background:linear-gradient(135deg, #364f6b, #3fc1c9);color:white;} .error-home-link{color:#3fc1c9;text-decoration:none;font-size:1rem;border:2px solid #3fc1c9;padding:10px 20px;border-radius:5px;transition:background-color 0.3s, color 0.3s;}
.user-logo-container {
    text-align: center;
    margin: 10px 0;
}
.user-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.user-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.upload-button {
    text-align: center;
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 15px auto 0;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background: linear-gradient(135deg, #496b91, #518a9d);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.upload-button:hover {
    background: linear-gradient(135deg, #518a9d, #496b91);
    transform: translateY(-2px); box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
.upload-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.error-message-2 { color: #dc3545; text-align: center; margin-top: 7px; } .success-message { color: #28a745; text-align: center; margin-top: 7px; }
@media (max-width: 470px) { .r-footer-list { display: none; } .l-footer-list { display: none; } .footer-p { width: 100%; font-size: 16px; padding-top: 3px; margin: 4px; text-align: center; } .footer-link { text-decoration: none; color: #c0bfbf; transition: color 0.3s; font-size: 14px; } }
@media (min-width: 470px) { .nav-menu-button{ display: none; } .l-footer-list, .r-footer-list { display: flex; list-style: none; padding: 0; margin: 5px; } .footer-p { font-size: 16px; padding-top: 2px; margin: 4px; text-align: center; } .footer-a { text-decoration: none; margin: 0; } .footer-link { text-decoration: none; color: #c0bfbf; transition: color 0.3s; font-size: 13px; } }
@media (max-width: 550px) { .nav-list { display: none; } .nav-menu-button { width: 40px; height: 40px; display: flex; margin: 12px; flex-direction: column; justify-content: space-between; cursor: pointer; } }
