@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');

@font-face {
    font-family: 'neon_tubes_2regular';
    src: url('./Fonts/neontubes2-webfont.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
	font-family: 'SEGOEUIL';
	src: url('./Fonts/SEGOEUIL.eot');
	src: local('SEGOEUIL'), url('./Fonts/SEGOEUIL.woff') format('woff'),
     url('./Fonts/SEGOEUIL.ttf') format('truetype');
}


.neontitle {
    font-family: "SEGOEUIL";
    margin: 0;
    color: #fff0f0;
    font-size: 8vw;
    text-shadow: 0 0 40px #ff04d5, 0 0 20px #ff04d5;
    font-weight: 100;
    text-align: center;
}

#main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1vh;
}

.login {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    animation-name: fadeInUp;
    animation-duration: 2s;
    width: 70%;
}

input[type=password],
select {
    width: 10%;
    padding: 12px 20px;
    margin: 8px 4px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
    position: relative;
    top: 5%;
    align-self: center;
    animation-name: fadeInUp;
    animation-duration: 2s;
}
#search {
    width: 70%;
    padding: 12px 20px;
    margin: 8px 4px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
    position: relative;
    top: 5%;
    align-self: center;
    animation-name: fadeInUp;
    animation-duration: 2s;
}

input[type=submit] {
    position: relative;
    top: 5%;
    align-self: center;
    width: 50%;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    animation-name: fadeInUp;
    animation-duration: 2s;
}

input[type=submit]:hover {
    background-color: #45a049;
}