﻿@import url('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');

* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #F9FAFC;
}

.login {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card {
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 340px;
    height: 450px;
    border-radius: 5px;
    padding: 50px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    text-align: center;
}

#logo {
    width: 20%;
    margin-bottom: 35px;
}

.card p {
    font-size: 23px;
    font-weight: 500;
    margin-bottom: 60px;
}

#error-message {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0px;
    margin-top: 15px;
    color: red;
}

.card input {
    width: 90%;
    height: 20px;
    border: 0;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 35px;
    background: #F3F4F8;
}

.card input:focus {
    outline: none;
}

.card button {
    width: 90%;
    height: 40px;
    border: 0px;
    border-radius: 5px;
    background-color: #41C1CB;
    color: #ffff;
    margin-top: 10px;
    font-weight: 600;
}

.card button:hover {
    background-color: #3AADB6;
    cursor: pointer;
}

.card button:active {
    background-color: #41C1CB;
}
