@import 'https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap';

* {
    box-sizing: border-box;
}

body, textarea, input, button {
    font-family: 'Poppins', sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

p {
    margin: 0;
}

body {
    padding: 0;
    margin: 0;
}

.login-page {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.3)), url('../images/background.jpeg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #1F3061;
    border-radius: 6px;
    width: 620px;
    padding: 70px 100px;
}

.card .card-header {
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: center;
    text-align: center;
}

.card .card-header img {
    width: 200px;
    height: 90px;
}

.card .card-header .description {
    font-size: 20px;
    font-weight: 400;
    color: white;
}

.card .card-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.card .card-content form {
    display: contents;
}

.card .card-content form .form-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card .card-content form .form-content label {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card .card-content form .form-content label span {
    color: #FFFFFF;
    opacity: 0.5;
    font-size: 14px;
}

@media (max-width: 768px) {
    .card .card-content form .form-content label input {
        text-align: center;
    }

    .card {
        padding: 70px 50px;
    }
}

.card .card-content form .form-content label input {
    width: 100%;
    height: 56px;
    padding: 15px;
    background-color: #FFFFFF;
    outline: none;
    border: none;
    border-radius: 6px;
}

.card .card-content form .form-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card .card-content form .form-footer button {
    width: 100%;
    background-color: #69C0AC;
    color: #1F3061;
    border: none;
    border-radius: 6px;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
}

.card .card-content .error {
    text-align: center;
    color: red;
    font-weight: 600;
}

.card .card-footer {
    display: flex;
    flex-direction: column;
}

.card .card-footer .description {
    color: #FFFFFF;
    opacity: 0.5;
    text-align: center;
    font-size: 14px;
}

.card .card-footer p a {
    color: #FFFFFF;
}