* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    min-height: 100vh;

    background: linear-gradient(
        135deg,
        #7a1717,
        #b53a1d
    );

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


/* LOGIN CONTAINER */

.login-container {
    width: 500px;

    background: white;

    padding: 45px 50px;

    border-radius: 15px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

    text-align: center;
}


/* LOGO */

.logo {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    color: #7a1717;

    margin-bottom: 10px;
}

.logo span {
    font-size: 38px;
}

.logo h1 {
    font-size: 36px;
}


.welcome {
    color: #666;

    font-size: 16px;

    margin-bottom: 35px;
}


/* FORM */

.form-group {
    text-align: left;

    margin-bottom: 22px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 16px;

    font-weight: bold;

    color: #444;
}

.form-group input {
    width: 100%;

    padding: 14px;

    border: 1px solid #ccc;

    border-radius: 7px;

    outline: none;

    font-size: 15px;

    background: white;
}

.form-group input:focus {
    border-color: #b53a1d;

    box-shadow: 0 0 0 2px rgba(181, 58, 29, 0.1);
}


/* LOGIN BUTTON */

.login-btn {
    width: 100%;

    padding: 14px;

    border: none;

    border-radius: 7px;

    background: #8b1e1e;

    color: white;

    font-size: 18px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;
}

.login-btn:hover {
    background: #a32620;
}


/* REGISTER */

.register {
    margin-top: 30px;

    color: #666;

    font-size: 16px;
}

.register a {
    color: #c43d1f;

    font-weight: bold;

    text-decoration: none;
}

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


/* BACK TO HOME */

.home-link {
    display: inline-block;

    margin-top: 25px;

    color: #8b1e1e;

    text-decoration: none;

    font-size: 16px;
}

.home-link:hover {
    text-decoration: underline;
}


/* MOBILE */

@media (max-width: 600px) {

    .login-container {
        width: 90%;

        padding: 35px 25px;
    }

    .logo h1 {
        font-size: 28px;
    }

    .logo span {
        font-size: 30px;
    }
}