html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f0f0;
}

.hero {
    background-image: url('./images/freepik__talk__19842.png');
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

.reset-container {
    max-width: 420px;
    width: 100%;
    background: rgba(217, 217, 217, 0.7);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(100px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-align: center;
}
.logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.logo img {
    max-width: 150px;
    height: auto;
}

.reset-container h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

/* Paragraph text */
.reset-container p {
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
}

/* Form group spacing */
.form-group {
    margin-bottom: 20px;
}

/* Inputs */
input[type="email"],
input[type="password"],
input[type="text"],
input[type="hidden"],
input.form-control,
textarea.form-control {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    outline: none;
    font-size: 14px;
    box-sizing: border-box;
    transition: 0.3s;
}

/* Focus effect for inputs */
input:focus,
textarea:focus {
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Submit button */
.btn, button[type="submit"] {
    margin-top: 16px;
    width: 100%;
    padding: 12px;
    background-color: #007BFF;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

/* Button hover effect */
.btn:hover,
button[type="submit"]:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Error messages */
.error {
    color: #d93025;
    font-size: 13px;
    margin-top: 5px;
    text-align: left;
}

/* Back to login link */
.back-login {
    margin-top: 20px;
    font-size: 13px;
    color: #333;
}

.back-login a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}



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

/* Success / flash messages (optional) */
.flash-success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
}

.flash-error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
}
