@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');

*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #0286BB;
}
.container {
    width: 300px;
    height: 550px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.container h2{
text-align: center;
color: #0286BB;
margin: 10px;
}

.container h3{
    text-align: center;
}


.entrada{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 300px;
}

.entrada div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 2px solid black;
}
svg{
    font-size: 90px;
    text-align: center;
    
}

hr{
    margin: 5px;
    border: 1px solid black;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.input-group input {
    width: 90%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    border: none;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.link {
    margin-top: 10px;
    text-align: center;
}

.link a {
    color: #007bff;
    text-decoration: none;
}

.alert {
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f44336;
    color: #fff;
    border-radius: 5px;
}

.alert.success {
    background-color: #4CAF50;
}
