*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.btnsTab{
    display: flex;
    margin-top: 10px;
}
h1{
    text-align: center;
}

a{
    text-align: center;
    color: rgb(242, 245, 242);
    font-weight: 900;
    padding: 10px;
    text-decoration: none;
    background-color: green;
    border-radius: 5px;
    transition: all 0.3s ease;
}
a:hover{
    transform: scale(1.02);
    background-color: lightgreen;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg,#130126 0%, #29074a 100%);
    color: aliceblue;
    height: 100vh;
}
.container{
    background-color:rgb(29, 23, 23);
    max-width: 480px;
    padding: 20px;
    border-radius: 12px;
}
input{
    width: 100%;
    padding: 12px;
    margin :5px 0;
}
button{
    width: 100%;
    background-color: green;
    color: aliceblue;
    padding:8px;
    transition: all 0.3s ease;
    border: none;
    margin: 10px 0;
    border-radius: 5px;
}
button:hover{
    transform: scale(1.02);
    background-color: lightgreen;
}
#submit{
    display: block;
    width: 100%;
    margin-top: 10px;
}
.report{
    display: none;
}
p{
    color: red;
    margin: 10px;
    padding: 10px;
}