:root {
    --primary: #007AFF;
    --bg: #EAF2FF;
    --text: #242424
}

body {
    color: var(--text)
}

.min-h-screen {
    background: #fff
}

.login-logo a {
    display: inline-block;
    padding: 8px 10px;
}

.login-logo svg {
    width: 180px;
    height: 67px
}

.login-card {
    box-shadow: 0 10px 20px rgba(0, 0, 0, .06), 0 6px 6px rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 12px
}

.login-heading {
    font-size: 28px;
    line-height: 1.2;
    margin: 6px 0 18px;
    text-align: center;
    color: var(--text);
    font-weight: 700
}

.login-form label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #555;
    letter-spacing: .02em;
    margin-bottom: 6px;
    text-transform: uppercase
}

.login-form input[type=email],
.login-form input[type=password] {
    width: 100%;
    height: 46px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    padding: 0 14px;
    font-size: 14px;
    color: var(--text)
}

.login-form input::placeholder {
    color: #9aa3af
}

.login-form .mt-4 {
    margin-top: 16px
}

.login-submit {
    display: block;
    width: 80%;
    margin:auto;
    height: 48px;
    border-radius: 9999px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    justify-content: center
}

.login-submit:hover {
    filter: brightness(1.05)
}

.underline.text-sm {
    text-decoration: none
}

.underline.text-sm:hover {
    text-decoration: underline
}