body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #84abff;
    min-height: 100vh;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.box {
    box-sizing: border-box;
    max-width: 1200px;
    width: 70vw;
    height: fit-content;
    background: white;
    border: solid 2px #333333;
    border-radius: 5px;
    padding: 5vw;
    margin: 50px auto;

p {
    margin: 5px 0px;
}
    
}


.login {
    display: grid;
}

#input-num {
    width: 100%;
    border: none;
    font-size: large;
    border-bottom: solid 1px black;
    margin-top: 10px;
    margin-bottom: 10px;
&:focus {
    outline: none;
}
}

#send {
    background: #fff;
    border: solid 1px black;
    font-size: 100%;
    border-radius: 5px;
    width: 150px;
    height: 50px;
    margin: 0 auto;
    display: block;
    cursor: pointer;

}

.gradation {
  background-image: repeating-radial-gradient(circle closest-corner, #22d3ee, #8b5cf6);
}