﻿
body {
    font-family: 'Poppins', sans-serif;
    background: #f4f7fc;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}


.reset-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.reset-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 400px;
    text-align: center;
}


.title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 20px;
}


.input-group {
    text-align: left;
    margin-bottom: 15px;
}

    .input-group label {
        font-size: 14px;
        font-weight: 500;
        color: #333;
        display: block;
        margin-bottom: 5px;
    }

    .input-group input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ced4da;
        border-radius: 6px;
        font-size: 14px;
        transition: 0.3s;
    }

        .input-group input:focus {
            border-color: #007bff;
            outline: none;
        }


.btn-reset {
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

    .btn-reset:hover {
        background: #0056b3;
    }


.back-link {
    margin-top: 15px;
}

    .back-link a {
        font-size: 14px;
        color: #007bff;
        text-decoration: none;
    }

        .back-link a:hover {
            text-decoration: underline;
        }




.btn-fetch {
    width: 100%;
    padding: 10px;
    background: #28a745;
    color: white;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: 0.3s;
}

    .btn-fetch:hover {
        background: #218838;
    }
