
@font-face {
    font-family: 'Roboto';
    src: url('/static/fonts/Roboto-VariableFont_wdth,wght.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: #040714;
	font-family: 'Roboto', sans-serif;
  	font-weight: 400;
    color: white;
}

/*login-clubs-section->*/

main {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    color: black;
    gap: 20px;
}

.login-clubs-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.form-container {
    width: 100%;
    max-width: 500px;
    padding: 50px;
    background-color: #EEEEEE;
    border-radius: 8px;
}

/*formulario login->*/

.header-form {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin-bottom: 30px;
}

.header-form img {
    width: 72px;
    height: 57px;
}

.header-form span {
    font-size: 24px;
    font-weight: 700;
}

/*<-formulario login*/

.form-field label {
    font-size: 18px;
}

.texto {
    padding: 20px 0;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.input-gen {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
}

.button {
    border: none;
    padding: 12px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    margin: 4px 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button1 {
    background-color: #040714;
    color: white;
    border: 1px solid #FF1A75;
    border-radius: 5px;
}

.button1:hover {
    background-color: #FF1A75;
    color: white;
}

.error-message {
    margin-top: 16px;
    padding: 14px 16px;
    background-color: #FF1A75;
    color: white;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.4;
}

.password-help {
    margin-top: 20px;
    color: #4A4E54;
    font-size: 16px;
    line-height: 1.4;
}

.purchase-link {
    color: #5800FF;
    transition: color 0.2s ease;
    font-size: 16px;
}

/*<-login-clubs-section*/

/*page transition->*/

@view-transition {
  	navigation: auto;
}

::view-transition-old(main),
::view-transition-new(main) {
  	animation-duration: 0.6s;
  	animation-timing-function: ease-in-out;
  	animation-fill-mode: both;
}

/* Viejo contenido se aleja, se desenfoca y se desvanece */
::view-transition-old(main) {
  	animation-name: zoom-out-blur;
}

/* Nuevo contenido entra con zoom y nitidez */
::view-transition-new(main) {
	animation-name: zoom-in-clear;
}

@keyframes zoom-out-blur {
  	from {
    	transform: scale(1);
    	opacity: 1;
    	filter: blur(0px);
  	}
  	to {
    	transform: scale(0.9);
    	opacity: 0;
    	filter: blur(10px);
  	}
}

@keyframes zoom-in-clear {
  	from {
    	transform: scale(1.1);
    	opacity: 0;
    	filter: blur(10px);
  	}
  	to {
    	transform: scale(1);
    	opacity: 1;
    	filter: blur(0);
  	}
}

/*<-page transition*/
