* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-size: 1em;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

body {
    background-color: rgb(26, 29, 41);
}

.header-login {
    padding: 1rem 2.25rem;
    border-bottom: 1px solid rgb(49, 52, 62);
}

.login-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.login-content {
    max-width: 400px;
    width: 100%;
    padding: 25px;
}

.login-content h3 {
    color: #fff;
    font-size: 1.5rem;
    letter-spacing: .11px;
    font-weight: 400;
}

.login-content p {
    margin-top: 0.9rem;
    color: #f9f9f9;
    font-size: 0.938rem;
    font-weight: 300;
}

.login-content form {
    margin-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.login-content form input {
    border: 1px solid transparent;
    border-radius: 4px;
    height: 52px;
    padding: 7px 12px;
    transition: all 0.1s ease 0s;
    outline: none;
    color: #f9f9f9;
    background-color: rgb(49, 52, 62);
}

.login-content form input:focus {
    border: 1px solid rgba(249, 249, 249, 0.3);
}

.login-content form button {
    margin-top: 1.3rem;
    cursor: pointer;
    font-size: 0.938rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    line-height: 1.6;
    outline: none;
    height: 3rem;
    background: #0072d2;
    color: #f9f9f9;
    border: 0;
    border-radius: 0.25rem;
    padding: 0.75rem;
}