body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f2f5;
    font-family: 'Roboto', sans-serif;
}

.reset-password-container,
.forgot-password-container {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 100% !important;
    text-align: center;
}

.reset-password-container h2,
.forgot-password-container h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.input-field {
    position: relative;
    margin-bottom: 20px;
}

.input-field input {
    width: 90%;
    padding: 12px 40px 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.input-field .icon-holder {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #aaa;
}

.submit-btn {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #0056b3;
}

.info-text {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

.info-text a {
    color: #007bff;
    text-decoration: none;
}

.info-text a:hover {
    text-decoration: underline;
}
