@charset "utf-8";
/* CSS Document */

.cadastro{
    margin-top:20px;
    text-align:center;
    font-size:14px;
    color:#64748b;
}

.cadastro a{
    color:#2563eb;
    text-decoration:none;
    font-weight:600;
}

.cadastro a:hover{
    text-decoration:underline;
}	
	
	
.social-login{
    margin-top:20px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.btn-google,
.btn-facebook{
    width:100%;
    padding:12px;
    border:none;
    border-radius:10px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.btn-google{
    background:#ffffff;
    color:#444;
    border:1px solid #dcdcdc;
}

.btn-google:hover{
    background:#f5f5f5;
}

.btn-facebook{
    background:#1877F2;
    color:#fff;
}

.btn-facebook:hover{
    background:#1664cf;
}	
	
	
	
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:linear-gradient(135deg,#0f172a,#1e293b);
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
}

.login-container{
	width:90%;
    max-width:380px;
    background:#fff;
    border-radius:18px;
    padding:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
}

.logo{
    text-align:center;
    margin-top: -50px;
	 
	
    border-top-width: 10px;
	/*padding-top: 30px;*/
	/*background-color: black; */
}

/*.logo h1{
    color:#0f172a;
    font-size:32px;
    letter-spacing:2px;
}

.logo p{
    color:#64748b;
    margin-top:5px;
    font-size:14px;
}
*/
.input-group{
    margin-bottom:18px;
}

.input-group label{
    display:block;
    margin-bottom:6px;
    color:#334155;
    font-weight:600;
    font-size:14px;
}

.input-group input{
    width:100%;
    padding:13px;
    border:1px solid #cbd5e1;
    border-radius:10px;
    font-size:15px;
    transition:.3s;
}

.input-group input:focus{
    outline:none;
    border-color:#2563eb;
    box-shadow:0 0 0 3px rgba(37,99,235,.15);
}

.options{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:22px;
    font-size:14px;
}

.options a{
    color:#2563eb;
    text-decoration:none;
}

.options a:hover{
    text-decoration:underline;
}

button{
    width:100%;
    padding:14px;
    border:none;
    border-radius:10px;
    background:#2563eb;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    background:#1d4ed8;
}

.mensagem{
    margin-top:15px;
    text-align:center;
    font-size:14px;
    color:#dc2626;
}

.footer{
    margin-top:25px;
    text-align:center;
    color:#94a3b8;
    font-size:12px;
}
	
.login-page{
    display:flex;
    flex-direction:column;
    align-items:center;
}
	@media only screen and (min-width: 769px) { 
	
		.logo{
    text-align:center;
    margin-bottom:0px;
	 margin-top: 100px;

    border-top-width: 300px;
	/*padding-top: 30px;*/
	/*background-color: black; */
}
	
	}



