* {
    text-decoration: none;
    list-style: none;
    color: white;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-style: normal;
}

*:focus {
    outline: none;
}

body {
    background-color: rgb(9, 9, 10);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 0px;
    margin: 0px;
}

main {
    flex: 1;
}

.app {
    display: flex;
    justify-content: center;
    align-items: center;
}

.formcontainer {
    margin-top: 100px;
    width: 250px;
    max-width: 300px;
    max-height: 70%;
    background: #09090A;
    background: linear-gradient(0deg, rgb(8, 8, 9) 0%, rgb(16, 16, 17) 100%);
    border: 1px solid rgb(40, 40, 45);
    padding: 30px;
    border-radius: 15px;
}

#startform {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#lssubmitbutton {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 30px;
    background: #41414d;
    background: linear-gradient(0deg, rgb(79, 79, 93) 0%, rgb(121, 121, 142) 100%);
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: rgb(11, 11, 12);
    font-weight: 600;
}

#lssubmitbutton:hover {
    background: #3a3a45;
    background: linear-gradient(0deg, rgb(70, 70, 83) 0%, rgb(108, 108, 127) 100%);
}

#sforminp {
    font-size: 15px;
    padding: 15px;
    border-radius: 10px;
    background-color: rgb(11, 11, 12);
    border: 1px solid rgb(86, 86, 97);
    transition: 0.3s;
}

#sforminp:focus {
    border: 1px solid rgb(128, 128, 144);
}

.signuptitle {
    font-size: 30px;
    padding-bottom: 10px;
    font-weight: 400;
}

.logintitle {
    font-size: 30px;
    padding-bottom: 10px;
    font-weight: 400;
}

#alreadyhave {
    text-align: center;
    color: rgb(255, 255, 255);
    text-decoration: underline;
}

#alreadyhavve {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

#alreadyhave:hover {
    text-decoration: none;
}

.spinner {
    background-color: transparent;
    border: 2px solid black;
    border-right: 2px solid transparent;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.flash.success {
    margin-top: 4px;
    color: rgb(87, 216, 82);
    text-align: center;
}

.flash.error {
    margin-top: 4px;
    color: rgb(216, 82, 82);
    text-align: center;
}


@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


