*{
    font-family: Arial;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 20px;
    color:#180b5b;
}
html{
    width: 100vw;
    height: 100vh;
    overscroll-behavior: none;
}
body{
    width: 100vw;
    height: 100vh;
    position: relative;
    -webkit-overflow-scrolling: auto;
    overscroll-behavior: none;
}
.main-container{
    min-width: 100vw;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.form {
    padding: 10px;
    border: 1px solid #180b5b;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
}
.logo{
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
.logo img{
    width: 100%;
}
.input-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
}
input{
    padding: 3px;
    border: 1px solid #180b5b;
    border-radius: 5px;
}
.check-row{
    margin-top: 10px;
    margin-bottom: 10px;
}
.submit-row{
    display: flex;
    justify-content: center;
}
.submitBtn{
    cursor: pointer;
    padding: 10px 20px;
    border: 1px solid #180b5b;
    border-radius: 5px;
    background: #180b5b;
    color: white;
    transition: all .3s linear;
}
.submitBtn:hover{
    background: white;
    color: #180b5b;
}
.error{
    color:red;
}
.form-text {
    text-align: center;
    display: none;
}
.sorsolasBtn{
    cursor: pointer;
    padding: 10px 20px;
    border: 1px solid #180b5b;
    border-radius: 5px;
    background: #180b5b;
    color: white;
    transition: all .3s linear;
}
.sorsolasBtn:hover{
    background: white;
    color: #180b5b;
}
.new-winner-text{
    font-size: 24px;
}
.new_winner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.change {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 150px;
    height: 150px;
    z-index: 2;
}
.winner-item {
    display: flex;
    justify-content: space-between;
    padding: 3px;
    border-bottom: 1px solid;
}
.winners-text {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 22px;
}