@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Cal Sans",sans-serif;
}

body {
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-size: 100%;
   background-repeat: no-repeat;
    background-image: url(./nighttime-forest-4k-hd-laptop-lxz0uv1x6b7z0yau.jpg);
}

/* Estilo da caixa de login */
.login-container {
    background-color:#0000003a ;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

/* Estilo do título */
h2 {
    margin-bottom: 20px;
    color: #ffffff;
}

/* Estilo do grupo de input */
.input-group {
    margin-bottom: 15px;
    text-align: left;
}

/* Estilo dos rótulos dos campos */
label {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
}

/* Estilo dos campos de entrada */
input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

/* Estilo do botão de login */
.btn-login {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    background: linear-gradient(to right, #3F51B5, #9C27B0, #E91E63, #FFCA28);
}

.btn-login:hover {
    background-color: #45a049;
}

/* Estilo do link de cadastro */
.signup-link {
    margin-top: 15px;
    font-size: 14px;
    color: #ffffff;
}

.signup-link a {
    color: #ffffff;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}


