* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;
}

body {

    min-height: 100vh;

    display: flex;

    justify-content: center;

    align-items: center;

    background:
        linear-gradient(
            135deg,
            #071226,
            #0f172a
        );

    font-family:
        Inter,
        Arial,
        sans-serif;
}

.login-wrapper {

    width: 100%;

    max-width: 420px;

    padding: 20px;
}

.login-card {

    background: white;

    border-radius: 24px;

    padding: 40px;

    box-shadow:
        0 25px 50px rgba(
            0,
            0,
            0,
            0.25
        );
}

.logo {

    font-size: 38px;

    font-weight: 900;

    color: #071226;

    margin-bottom: 20px;

    text-align: center;
}

.login-card h1 {

    font-size: 28px;

    color: #071226;

    margin-bottom: 10px;

    text-align: center;
}

.login-card p {

    text-align: center;

    color: #64748b;

    margin-bottom: 30px;

    line-height: 1.5;
}

.form-group {

    margin-bottom: 20px;
}

.form-group label {

    display: block;

    margin-bottom: 8px;

    color: #334155;

    font-weight: 600;
}

.form-group input {

    width: 100%;

    padding: 14px;

    border: 1px solid #dbe2ea;

    border-radius: 12px;

    font-size: 15px;

    transition: 0.2s;
}

.form-group input:focus {

    outline: none;

    border-color: #2563eb;

    box-shadow:
        0 0 0 3px rgba(
            37,
            99,
            235,
            0.15
        );
}

button {

    width: 100%;

    border: none;

    background: #2563eb;

    color: white;

    padding: 14px;

    border-radius: 12px;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.2s;
}

button:hover {

    background: #1d4ed8;
}