﻿/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to right, #ff758c, #ff7eb3);
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.login-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 350px;
    width: 100%;
}

    .login-card h2 {
        font-size: 1.8rem;
        color: #333;
        margin-bottom: 10px;
    }

    .login-card p {
        font-size: 1rem;
        color: #777;
        margin-bottom: 30px;
    }

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

    .input-group label {
        display: block;
        font-size: 0.9rem;
        color: #333;
        margin-bottom: 8px;
    }

    .input-group input {
        width: 100%;
        padding: 12px;
        font-size: 1rem;
        border: 1px solid #ccc;
        border-radius: 8px;
        outline: none;
        transition: 0.3s;
    }

        .input-group input:focus {
            border-color: #ff758c;
            box-shadow: 0 0 5px rgba(255, 117, 140, 0.5);
        }

.btn-login {
    background: linear-gradient(to right, #ff758c, #ff7eb3);
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    font-size: 1rem;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

    .btn-login:hover {
        background: linear-gradient(to right, #ff5b7f, #ff6a9b);
    }

.links {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

    .links a {
        color: #ff758c;
        text-decoration: none;
        transition: 0.3s;
    }

        .links a:hover {
            text-decoration: underline;
        }
