@import url('https://fonts.cdnfonts.com/css/agrandir');

body {
    font-family: Arial, Helvetica, sans-serif;
    background-image: url("../../resources/Login_background.png");
    background-color: #4a4a54;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 1.2rem;
    color: #f4c542;
    font-weight: 400;
    letter-spacing: 0.5px;
    z-index: 10;
}

.forgot-password-box {
    background-color: #f5f5f5;
    border-radius: 20px;
    padding: 50px 45px;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.icon svg {
    width: 50px;
    height: 50px;
    stroke: #333; /* Specific color from original design */
}

/* Override/Extend Bootstrap form control */
.form-control {
    border-radius: 8px;
}

.confirm-btn {
    background-color: #f4c542;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    color: white;
    transition: background-color 0.3s;
}

.confirm-btn:hover {
    background-color: #e0b33a;
}

.return-link a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.return-link a:hover {
    color: #f4c542;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo {
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
    }
    .forgot-password-box {
        padding: 40px 30px;
    }
}