@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;700&display=swap');

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
	background: url('../images/background-login-aware.png') no-repeat center center fixed;
	background-size: cover;
	font-family: 'Plus Jakarta Sans', sans-serif;
}
.h3-custom{
	color: #685BC7;
	font-weight: bold;
	
}
.login-container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
	border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.btn-custom {
    background-color: #685BC7;
    color: white;
    clip-path: polygon(6% 0, 94% 0, 96% 50%, 94% 100%, 6% 100%, 4% 50%);
    border: 2px solid transparent;
  	transition: all 0.3s ease;
}
.btn-custom:hover{
/*	border-color: #685BC7;*/
	background-color: white; /* opcional: cambia el fondo */
  	color: #685BC7; /* texto del mismo color */
  	box-shadow: 0 0 0 3px #685BC7 inset; /* borde interno del mismo color */
}
.input-custom-border {
	border-color: #685BC7 !important;
}
.text-error {
    color: red;
    margin-top: 10px;
}