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

:root {
    --card-gap: 20px;
    --width-card: 600px;
    --text: #060711;
    --primary: #132ae5;
    --secondary: #c6dfef;
    --accent: #9ab6e5;
}

*, html {
    margin:0;
    padding:0;
    font-family: "Poppins", sans-serif;
    color: var(--text)
}

html, body {
    margin: 0;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url("./background.jpeg") no-repeat;
    background-size: cover;

}

.container {
    width: 700px;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    line-height: 1.5;
    background-color: #227EA5;
    outline: solid #1D0E00 5px;
    border-radius: 5px;
    padding: 50px;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

form > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 64pt;
    text-transform:uppercase;
    color: white;
    font-weight: 600;
    letter-spacing: 3%;
}

label {
    font-size: 24pt;
    text-transform: uppercase;
    color: white;
    font-weight: 600;
    margin-bottom: 0;
}

input[type=password] {
    width: 220px;
    padding: 10px;
    transition: all 300ms ease;
}

input[type=password]:focus-visible {
    width: 400px;
}

input[type="submit"] {
    border: none;
    width: 400px;
    height: 70px;
    color: white;
    background-color: #11405B;
    font-size: 24pt;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
}

.submit {
    transition: 300ms;
}

.submit:hover {
	transform: scale(1.1);
}

.submit:hover > input {
    border: white solid 2px;
}

@keyframes rotate
{
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

.loader {
	position: absolute;
	display: none;
    animation: rotate infinite 2s linear;

}

