﻿
/* Background for Reset Page */
.reset-bg {
    background: url('/images/tlsbg.png') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reset-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.reset-box {
    padding: 40px;
    border-radius: 10px;
    width: 400px;
    background: linear-gradient(135deg, white, #f9f9f9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

    .reset-box h2 {
        font-size: 24px;
        font-weight: bold;
        background: linear-gradient(135deg, #b1c906, #005423);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 15px;
    }

    .reset-box p {
        font-size: 14px;
        color: #005423;
        margin-bottom: 20px;
    }

.main-group {
    margin-bottom: 20px;
    position: relative;
}

    .main-group input {
        background-color: rgba(255, 255, 255, 0.9);
        border: 1px solid #b1c906;
        color: #005423;
        padding: 10px;
        font-size: 14px;
        border-radius: 5px;
        transition: border-color 0.3s ease;
    }

        .main-group input:focus {
            border-color: #005423;
            outline: none;
        }

    .main-group label {
        color: #005423;
        font-size: 14px;
    }

.btn-block {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #b1c906, #005423);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    transition: background 0.3s ease;
}

    .btn-block:hover {
        background: linear-gradient(135deg, #94a906, #003e1c);
    }

.err-validate {
    background: linear-gradient(135deg, rgba(221, 32, 32, 0.6), rgba(255, 255, 255, 0.4));
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 12px;
}

.validation-text {
    font-size: 12px;
    color: #e34949;
    font-style: italic;
    margin-top: 5px;
}

