@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');
@import url('https://fonts.googleapis.com/css?family=Great+Vibes');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Asap:ital,wght@1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    background-color: #dff7ff;
    background-image: url(../assets/images/bg/BG.png);
    cursor: url(/assets/images/Cursor/Cursor2_0.ico) 16 16, auto;
    display: flex;
    flex-direction: column;
}

body, html {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

main {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

.cursor-click {
    position: fixed;
    width: 20px;
    height: 20px;
    background: url(/assets/images/Cursor/Cursor2_1.ico) no-repeat center;
    background-size: contain;
    transform: scale(0);
    animation: pop 0.3s ease-out forwards;
    pointer-events: none;
    z-index: 9999;
}

@keyframes pop {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    width: 100%;
    position: relative;
    top: 0;
    z-index: 10;
    background: linear-gradient(135deg, #56ccf2, #2f80ed);
    background-size: 200% 200%;
    animation: smoothGradientMotion 15s ease infinite;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
}

@keyframes smoothGradientMotion {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

header::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 12px;
    box-shadow: 0 0 0 8px transparent;
    transition: box-shadow 0.5s ease-in-out;
}

header:hover::after {
    animation: glowing-shadow 1s ease-out forwards;
}

@keyframes glowing-shadow {
    0% { box-shadow: 0 0 0 8px rgba(0, 179, 255, 0); }
    100% { box-shadow: 0 0 25px 10px rgb(0, 200, 255); }
}

.logo-title-container {
    display: flex;
    align-items: center;
    transition: margin 0.3s ease;
}

#logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    transition: width 0.3s ease, height 0.3s ease, margin 0.3s ease;
}

#logo:hover {
    transform: scale(1.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.titlemenu {
    font-size: 1.5rem;
    color: white;
    margin: 0;
    padding: 0;
    line-height: 1;
}

#Menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

#hamburgerMenu {
    font-size: 2rem;
    color: white;
    cursor: url(/assets/images/Cursor/Cursor2_1.ico) 16 16, auto;
    transition: transform 0.3s ease-in-out, background 0.3s ease, box-shadow 0.3s ease;
    animation: heartbeat 2s infinite ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    background-size: 200% 200%;
    animation: smoothGradientMotion 15s ease infinite;
}

#hamburgerMenu.fixed {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 20;
    box-shadow: 0 0 15px rgba(0, 179, 255, 0.8);
}

#hamburgerMenu:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.8);
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.title {
    display: flex;
    align-items: center;
    text-align: center;
    font-family: 'Great Vibes', cursive;
    color: #ffffff;
    font-size: 2rem;
    position: relative;
    transition: font-size 0.3s ease;
}

.title h1 {
    font-size: 2.5rem;
    margin: 0;
    padding: 0;
    transition: font-size 0.3s ease;
    transition: 0.3s ease-in-out;
}

.title:hover h1 {
    transform: scale(1.02);
    transition: 0.3s ease-in-out;
}

.fa-paw {
    font-size: 3rem;
    color: #ffffff;
    margin-left: 0.5rem;
    animation: heartBeat 1.5s infinite ease-in-out;
    transition: font-size 0.3s ease;
}

.fa-paw:hover {
    transform: rotate(15deg);
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

header h1 {
    font-size: 2rem;
    color: white;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 4px 8px 5px rgba(0, 0, 0, 0.3);
}

header .login-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

header .login-container button {
    background: linear-gradient(135deg, #199fff, #56CCF2);
    color: #ffffff;
    border: 2px solid #56CCF2;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bolder;
    border-radius: 20px;
    cursor: url(/assets/images/Cursor/Cursor2_1.ico) 16 16, auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

header .login-container button:hover {
    color: #199fff;
    background: #ffffff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0);
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

header .login-container button:active {
    transform: scale(0.98);
}

#loginForm button, #registerForm button {
    padding: 12px;
    border-radius: 8px;
    cursor: url(/assets/images/Cursor/Cursor2_1.ico) 16 16, auto;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

#loginForm button:hover, #registerForm button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

#loginForm button:active, #registerForm button:active {
    transform: scale(0.95);
}

#mainNav {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #56ccf2, #2f80ed);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 100%;
    left: -250px;
    width: 250px;
    transition: left 0.3s ease-in-out;
    z-index: 100;
}

#mainNav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    cursor: url(/assets/images/Cursor/Cursor2_1.ico) 16 16, auto;
}

#mainNav a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#loginForm, #registerForm {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    position: absolute;
    right: 0;
    top: 60px;
    width: 220px;
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#loginForm.hidden, #registerForm.hidden {
    display: none;
}

#loginForm input, #registerForm input {
    width: 100%;
    padding: 12px;
    margin: 5px 0;
    border: 2px solid #81c6fe;
    border-radius: 5px;
    background: #FFFFFF;
    color: #31708E;
    font-size: 1rem;
    transition: border 0.3s ease;
}

#loginForm input:focus, #registerForm input:focus {
    border-color: #4998ff;
    box-shadow: 0 2px 10px rgba(47, 128, 237, 0.5);
}

#countryCode {
    flex-shrink: 0;
    width: 180px;
    padding: 10px;
    font-size: 16px;
    color: #31708E;
    background-color: #E3F2FD;
    border: 2px solid #64B5F6;
    border-radius: 5px;
    outline: none;
    appearance: none;
    cursor: url(/assets/images/Cursor/Cursor2_1.ico) 16 16, auto;
    transition: all 0.3s ease-in-out;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2331708E"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
    padding-right: 30px;
}

#countryCode:hover {
    background-color: #cfe9ff;
    border-color: #42A5F5;
    box-shadow: 0 6px 12px rgba(100, 181, 246, 0.4);
    transform: scale(1.02);
}

#countryCode:focus {
    background-color: #E1F5FE;
    min-width: 100px;
    border-color: #1E88E5;
    box-shadow: 0 0 8px rgba(33, 150, 243, 0.5);
    transform: scale(1.03);
}

#countryCode option {
    background-color: #E3F2FD;
    color: #31708E;
    font-size: 14px;
    padding: 10px;
}

.phone-number-container {
    gap: 12px;
    align-items: center;
    width: 100%;
}

#regPhoneError {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}

#submitLogin, #submitRegister {
    background-color: #42A5F5;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    cursor: url(/assets/images/Cursor/Cursor2_1.ico) 16 16, auto;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

#submitLogin:hover, #submitRegister:hover {
    background-color: #1E88E5;
}

#loginForm a {
    text-decoration: none;
    color: #64B5F6;
    font-size: 0.9rem;
    display: block;
    text-align: center;
    margin-top: 10px;
    transition: color 0.3s ease;
    cursor: url(/assets/images/Cursor/Cursor2_1.ico) 16 16, auto;
}

#loginForm a:hover {
    color: #1E88E5;
}

#loginError, #registerError {
    color: red;
    font-size: 0.9rem;
    text-align: center;
    font-weight: bolder;
    margin-top: 5px;
    margin-bottom: 5px;
}

#loginError.active, #registerError.active {
    display: block;
}

#userProfile {
    display: flex;
    align-items: center;
    gap: 10px;
}

#profileImage {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

#role {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.4;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
    transition: color 0.4s ease-in-out, text-shadow 0.4s ease-in-out;
}

#username {
    color: #e8f4ff;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.3px;
    line-height: 1.5;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.767);
    transition: text-shadow 0.4s ease-in-out, color 0.4s ease-in-out;
}

#role:hover {
    color: #dfe6ee;
    text-shadow: 0px 2px 6px rgba(255, 255, 255, 0.3);
}

#username:hover {
    color: #1b4696;
    text-shadow: 0 2px 6px rgba(255, 255, 255, 0.3);
}

#logoutButton {
    padding: 10px 20px;
    font-size: 1rem;
    cursor: url(/assets/images/Cursor/Cursor2_1.ico) 16 16, auto;
    transition: background 0.3s ease, border 0.3s ease;
}

#logoutButton:hover {
    padding: 10px 20px;
    color: white;
    border: 2px solid crimson;
    background: linear-gradient(135deg, #d32f2f, #ff8a80);
}

#registerSuccess {
    color: #4CAF50;
    font-size: 1rem;
    display: none;
    text-align: center;
}

#registerSuccess.active {
    display: block;
}

input.error {
    border: 2px solid red;
}

input.success {
    border: 2px solid #4CAF50;
}

.field-error {
    color: #FF4C4C;
    font-size: 14px;
    margin-top: 5px;
    font-weight: bold;
    display: none;
}

.field-error.active {
    display: block;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
}

.popup.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -60%);
}

.popup-content h2 {
    margin: 0;
    font-size: 20px;
}

.popup-content p {
    font-size: 16px;
    margin: 10px 0;
}

.popup button {
    background-color: #64B5F6;
    border: none;
    padding: 10px 20px;
    cursor: url(/assets/images/Cursor/Cursor2_1.ico) 16 16, auto;
    color: white;
    font-size: 14px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.popup button:hover {
    background-color: #1E88E5;
}

.error {
    border: 2px solid red;
}

.hidden {
    display: none;
}

footer {
    flex-shrink: 0;
    flex: 1 0 auto;
    position: relative;
    bottom: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.9), rgba(7, 196, 206, 0.9));
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    letter-spacing: 1.5px;
    display: flex;
    justify-content: space-between;
    padding: 30px 50px;
    align-items: center;
    flex-wrap: wrap;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}

footer a {
    cursor: url(/assets/images/Cursor/Cursor2_1.ico) 16 16, auto;
}

#title {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    letter-spacing: 2px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease;
}

#title:hover {
    color: #a2e4ff;
}

#subtitle {
    font-size: 1.2rem;
    color: #a2e4ff;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    margin-top: 5px;
    transition: color 0.3s ease;
}

#subtitle:hover {
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: rotate(10deg);
}

#dev {
    color: #a2e4ff;
    font-size: 1.5rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

#dev-name {
    color: #ffffff;
    font-size: 1.1rem;
    margin-top: 5px;
}

footer .socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

footer .socials a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

footer .socials a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.socials i {
    font-size: 1.4rem;
    color: #f5f5f5;
}

footer .developer-info {
    text-align: right;
}

footer .developer-info a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: inline-block;
    margin-top: 10px;
}

footer .developer-info a i {
    font-size: 1.2rem;
    color: #f5f5f5;
}

footer .developer-info a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.forgot-password-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(86, 204, 242, 0.95), rgba(47, 128, 237, 0.95));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    z-index: 2000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
    opacity: 1;
    visibility: visible;
}

.forgot-password-popup.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -55%);
}

.forgot-password-popup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.forgot-password-popup-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.forgot-password-popup-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.forgot-password-social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.forgot-password-social-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    color: #2f80ed;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: url(/assets/images/Cursor/Cursor2_1.ico) 16 16, auto;
}

.forgot-password-social-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #f0f0f0, #d0d0d0);
}

.forgot-password-social-button i {
    font-size: 1.3rem;
}

.forgot-password-popup-content button {
    background: linear-gradient(135deg, #ff6f61, #ff8a80);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: url(/assets/images/Cursor/Cursor2_1.ico) 16 16, auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.forgot-password-popup-content button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ff5a4a, #ff7066);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.forgot-password-popup-content button:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1124px) {
    .title h1 {
        font-size: 1.8rem;
    }
    .fa-paw {
        font-size: 2.2rem;
    }
    #logo {
        width: 60px;
        height: 60px;
    }
}

@media (min-width: 1025px) {
    header {
        flex-direction: row;
        justify-content: space-between;
    }
    header .login-container {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    #hamburgerMenu {
        margin-left: 20px;
    }
}

@media screen and (max-width: 1024px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    header nav {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    header .login-container {
        flex-direction: row;
        justify-content: flex-end;
        width: 100%;
    }
    #mainNav {
        height: auto;
        background-color: #64B5F6;
    }
    footer {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 1149px) {
    header {
        text-align: center;
    }
    header h1 {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    #mainNav {
        display: none;
        gap: 5px;
        background-color: #64B5F6;
        padding: 5px;
    }
    #mainNav.active {
        display: flex;
    }
}

@media (max-width: 768px) {
    #logo {
        width: 55px;
        height: 55px;
        margin-right: 5px;
    }
    .title h1 {
        font-size: 2rem;
    }
    .fa-paw {
        font-size: 2rem;
    }
    footer {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    footer .socials {
        margin-top: 15px;
        justify-content: center;
    }
    footer .developer-info {
        text-align: center;
        margin-top: 10px;
    }
    .footer-logo {
        margin-top: 20px;
        gap: 10px;
    }
    #title {
        font-size: 1.8rem;
    }
    #subtitle {
        font-size: 1.1rem;
    }
    .footer-logo img {
        width: 70px;
        height: 70px;
    }
    footer .socials a {
        font-size: 0.9rem;
    }
    footer .developer-info a {
        font-size: 0.9rem;
    }
    .forgot-password-popup {
        max-width: 350px;
        padding: 15px;
    }

    .forgot-password-popup-content h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .forgot-password-popup-content p {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .forgot-password-social-button {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .forgot-password-social-button i {
        font-size: 1.1rem;
    }

    .forgot-password-social-buttons {
        gap: 10px;
    }

    .forgot-password-popup-content button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    #logoutButton {
        padding: 5px 15px;
        font-size: 0.8rem;
    }
    #logoutButton:hover {
        padding: 5px 15px;
    }
}

@media screen and (max-width: 480px) {
    #logo {
        width: 30px;
        height: 30px;
        margin-right: 5px;
    }
    #username{
        font-size: 1rem;
    }
    #profileImage{
        margin-right: 5px;
    }
    .title h1 {
        font-size: 1.5rem;
    }
    .fa-paw {
        font-size: 1.5rem;
    }
    #hamburgerMenu {
        font-size: 1.7rem;
    }
    .titlemenu {
        font-size: 1.2rem;
    }
    header .login-container button {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    #loginForm, #registerForm {
        width: 90%;
        right: 5%;
    }
    .forgot-password-popup {
        max-width: 300px;
        padding: 10px;
    }

    .forgot-password-popup-content h2 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .forgot-password-popup-content p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .forgot-password-social-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .forgot-password-social-button {
        padding: 8px 12px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }

    .forgot-password-social-button i {
        font-size: 1rem;
    }

    .forgot-password-popup-content button {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    #mainNav a {
        font-size: 1rem;
    }
}