/* General Styling */
body {
    font-family: Arial, 'Poppins', sans-serif;
    background: url("background.jpg") no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.back-btn {
    position: absolute;
    top: 20px; /* Adjust top spacing */
    left: 20px; /* Adjust left spacing */
    font-size: 44px;
    cursor: pointer;
    color: #1d662c; /* Adjust to match your design */
    background: none;
    border: none;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.back-btn:hover {
    color: #14501d; /* Darker shade on hover */
    transform: scale(1.1);
}


/* Forgot Password Card */
.forgot-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.forgot-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 350px;
}

/* Title */
h2 {
    color: #1d662c;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

/* Lock Icon */
.lock-icon {
    width: 80px;
    margin: 10px 0;
}

/* Description */
p {
    font-size: 14px;
    color: #58663f;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

/* Input Field */
.input-group {
    display: flex;
    align-items: center;
    background: #d9d9d9;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.input-icon {
    width: 20px;
    margin-right: 10px;
}

input[type="email"] {
    border: none;
    background: none;
    outline: none;
    width: 100%;
    font-size: 14px;
}

/* Send Code Button */
button {
    width: 60%;
    padding: 15px;
    background-color: #1d662c;
    color: white;
    border: none;
    border-radius: 24px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

button:hover {
    background-color: #14501d;
}
