﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&display=swap');

@font-face {
    font-family: 'Glacial Indifference';
    src: url('../Content/Fonts/GlacialIndifference-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Glacial Indifference';
    src: url('../Content/Fonts/GlacialIndifference-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Glacial Indifference', Arial, sans-serif;
    overflow: hidden;
}

.forgot-password-container {
    position: relative;
    height: 100vh;
    width: 100vw;
    background: url('../Content/Images/Background 3.png') lightgray 50% / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.forgot-password-card {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 600px;
    padding: 50px 60px;
    border-radius: 9px;
    background: #FFF;
    box-shadow: 1px 4px 12px 0 rgba(0, 0, 0, 0.25);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-seal {
    width: 50px;
    height: 50px;
    background: lightgray 20% / cover no-repeat;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
    border-radius: 50%;
}

.logo-text {
    color: #000;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    font-family: 'Roboto', sans-serif;
    font-size: 18px; 
    font-style: normal;
    font-weight: 900;
    line-height: 1.2; 
    white-space: nowrap; 
}

.back-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
}

    .back-button:hover {
        transform: scale(1.1);
    }

    .back-button svg {
        width: 39px;
        height: 39px;
    }

.card-content {
    display: flex;
    flex-direction: column;
}

.page-title {
    color: #FFE200;
    font-family: 'Baloo 2', cursive;
    font-size: 50px;
    font-style: normal;
    font-weight: 700; 
    line-height: 42px;
    letter-spacing: -2px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.page-description {
    color: #6C6C70;
    font-family: 'Glacial Indifference', Arial, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    color: #000;
    font-family: 'Glacial Indifference', Arial, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: -0.16px;
    margin-bottom: 8px;
}

    .form-label .required {
        color: #FF0000;
    }

.form-control-custom {
    width: 100%;
    padding: 14px 18px;
    border-radius: 7px;
    border: 1px solid #000;
    font-family: 'Glacial Indifference', Arial, sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

    .form-control-custom:focus {
        outline: none;
        border: 2px solid #FFE200;
        box-shadow: 0 0 0 3px rgba(255, 226, 0, 0.1);
    }

    .form-control-custom::placeholder {
        color: #B0B0B0;
    }

    .form-control-custom.error {
        border: 2px solid #dc3545 !important;
    }

.validation-error {
    display: block;
    color: #dc3545;
    font-size: 13px;
    margin-top: 6px;
    font-family: 'Glacial Indifference', Arial, sans-serif;
    min-height: 20px;
}

.btn-continue {
    width: 100%;
    padding: 16px;
    border-radius: 6px;
    background: #FFE200;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.31);
    border: none;
    color: #FFF;
    font-family: 'Glacial Indifference', Arial, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

    .btn-continue:hover {
        background: #FFEB3B;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.35);
        transform: translateY(-2px);
    }

    .btn-continue:active {
        transform: translateY(0);
    }

@media (max-width: 768px) {
    .forgot-password-card {
        padding: 40px 30px;
        width: 95%;
    }

    .logo-text {
        font-size: 18px;
        line-height: 28px;
    }

    .logo-seal {
        width: 40px;
        height: 40px;
    }

    .page-title {
        font-size: 40px;
        line-height: 38px;
    }

    .page-description {
        font-size: 16px;
        line-height: 20px;
    }

    .back-button svg {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .forgot-password-card {
        padding: 30px 20px;
    }

    .logo-section {
        gap: 8px;
    }

    .logo-text {
        font-size: 14px;
        line-height: 22px;
    }

    .page-title {
        font-size: 35px;
        line-height: 32px;
    }

    .page-description {
        font-size: 14px;
        line-height: 18px;
    }

    .form-label {
        font-size: 14px;
    }

    .form-control-custom {
        padding: 12px 16px;
        font-size: 14px;
    }

    .btn-continue {
        padding: 14px;
        font-size: 16px;
    }
}
