﻿/*Forgot Password styling*/
.forgot-wrapper {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.forgot-card {
    width: 900px;
    max-width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
}

.forgot-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: #fff3eb;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .forgot-icon i {
        font-size: 42px;
        color: #ff6b00;
    }

.forgot-title {
    margin-top: 25px;
    text-align: center;
    font-weight: 700;
    font-size: 40px;
    color: #222;
}

.forgot-divider {
    margin-bottom: 35px;
}

.forgot-label {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    text-align: left;
    float: none !important;
    position: static !important;
}

.custom-input-group .input-group-text {
    border: 1px solid #ffd2b3;
    border-right: none;
    border-radius: 10px 0 0 10px;
    color: #ff6b00;
}

.custom-input {
    height: 50px;
    border: 1px solid #ffd2b3;
    border-left: none;
    border-radius: 0 10px 10px 0;
}

    .custom-input:focus {
        border-color: #ff6b00;
        box-shadow: 0 0 0 .15rem rgba(255,107,0,.2);
    }

.btn-reset {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    background: linear-gradient(90deg,#ff7a00,#ff5c00);
    transition: .3s;
}

    .btn-reset:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 20px rgba(255,102,0,.25);
    }

.back-area {
    margin-top: 25px;
    text-align: center;
}

.back-link {
    color: #ff6b00;
    font-weight: 500;
    text-decoration: none;
}

    .back-link:hover {
        text-decoration: underline;
    }


