* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 40px 20px;
}

.header {
    position: absolute;
    top: 40px;
    left: 60px;
}

.logo {
    width: 190px;
    height: 75px;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.container {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

/* Lock Icon */
.icon-container {
    margin-bottom: 32px;
}

.lock-icon-1 {
    width: 80px;
    height: 80px;
    background-color: #eaefff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.lock-icon-1 i {
    font-size: 32px;
    color: #283c80;
}

/* Heading */
h1 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Description */
.description {
    font-size: 16px;
    color: #5e6369;
    margin-bottom: 32px;
    line-height: 1.5;
}

/* Form */
.form {
    display: flex;
    flex-direction: column;
}

/* Email Input */
.input-wrapper {
    position: relative;
    margin-bottom: 0;
}

.input-prefix {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #5e6369;
    font-size: 18px;

    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    width: 24px;
}

.email-input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    background-color: #f1f5f9;
    color: #333333;
    font-family: "Montserrat", sans-serif;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: #5e6369;
}

.email-input:focus {
    outline: none;
    background-color: #ffffff;
    border-color: #d25e00;
}

/* Buttons */
.button-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.send-btn {
    padding: 14px 24px;
    background-color: #d25e00;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-height: 48px;
}

.send-btn:hover {
    background-color: #b84e00;
}

.send-btn:active {
    background-color: #a04400;
}

.back-btn {
    padding: 14px 24px;
    background-color: #eeeff2;
    color: #5e6369;
    border: 1px solid #dde1e6;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    min-height: 48px;
}

.back-btn:hover {
    background-color: #e2e5eb;
}

.back-arrow {
    width: 20px;
    height: 20px;
}

/* ── RESPONSIVE: TABLET ── */
@media (max-width: 1024px) {
    .header {
        top: 28px;
        left: 36px;
    }

    .container {
        max-width: 500px;
    }
}

/* ── RESPONSIVE: MOBILE ── */
@media (max-width: 768px) {
    .header {
        top: 20px;
        left: 20px;
    }

    .logo {
        width: 140px;
        height: auto;
    }

    main {
        padding: 30px 16px;
    }

    h1 {
        font-size: 24px;
    }

    .description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .lock-icon-1 {
        width: 64px;
        height: 64px;
    }

    .lock-icon-1 i {
        font-size: 26px;
    }
}

/* ── RESPONSIVE: SMALL MOBILE ── */
@media (max-width: 480px) {
    .header {
        display: none;
    }

    body {
        padding: 20px 12px;
    }

    main {
        padding: 20px 8px;
    }

    h1 {
        font-size: 22px;
    }

    .description {
        font-size: 13px;
    }

    .email-input {
        font-size: 14px;
    }

    .send-btn,
    .back-btn {
        font-size: 14px;
        padding: 12px 20px;
    }
}

.time-filters {
    background: #f1f5f9;
    padding: 4px 6px;
    border-radius: 12px;
    margin-bottom: 16px;
    display: flex;
    gap: 10px;
    width: fit-content;
    margin-left: auto;
    align-items: center;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
}

.filter-btn {
    border: none;
    background: transparent;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    color: #a5a6a8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.filter-btn.active {
    background: #283c80;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.icon {
    font-size: 20px;
    display: block;
}

.lock-icon i {
    font-size: 18px;
    color: #1e3a8a;
}

.field-error {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    margin-top: 6px;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 400;
    color: #e21c1c;
}
.field-group {
    margin-bottom: 20px;
}
