/* =========================================
   FORGOT PASSWORD – IFC2FEM
========================================= */

/* full screen centar */
.forgot-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(145deg, #0f0f0f, #2d2d2d);
}

/* mali modal */
.forgot-box {
    width: 380px;
    max-width: 90%;
    padding: 30px 35px;
    border-radius: 40px;
    background: rgba(50, 50, 50, 0.95);
    box-shadow: 0 12px 35px rgba(0,0,0,0.6);
    text-align: center;
    color: #dedede;
    font-family: "DIN Regular", "Inter", sans-serif;
}

/* naslov */
.forgot-box h2 {
    font-size: 22px;
    font-weight: 700;
    color: #ffcc5c;
    margin-bottom: 20px;
}

/* forma */
.forgot-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* input */
.forgot-box input {
    padding: 14px 18px;
    border-radius: 25px;
    border: 1px solid #666;
    background-color: #1a1a1a;
    color: #dedede;
    font-size: 14px;
    font-family: "DIN Regular", sans-serif;
}

.forgot-box input::placeholder {
    color: #aaa;
}

.forgot-box input:focus {
    outline: none;
    border-color: #bb8000;
}

/* dugme */
.btn-forgot {
    margin-top: 10px;
    padding: 14px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    background-color: rgba(187,128,0,0.65);
    color: #e3e3e3;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-family: "DIN Regular", sans-serif;
}

.btn-forgot:hover {
    background-color: rgba(187,128,0,0.95);
    transform: scale(1.02);
}

/* link nazad */
.forgot-link {
    display: inline-block;
    margin-top: 18px;
    font-size: 14px;
    color: #ccc;
    text-decoration: none;
}

.forgot-link:hover {
    color: #ffcc5c;
    text-decoration: underline;
}
