@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
*{
    font-family: 'Poppins', 'sans-serif';
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    min-height: 100vh;
    background: linear-gradient(to bottom right, #76c8e9, #00212b);
    overflow: hidden;
}
.login {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.login h2 {
    color: white;
}

.login .input {
    display: block;
    margin: 10px auto;
    position: relative;
    width: 70%;
    height: 30px;
    border-radius: 15px;
    background: rgba(255,255,255,0.5);
    border: none;
    font-size: 20px;
    text-align: center;
}

.login .butt {
    display: block;
    margin: 10px auto;
    position: relative;
    width: 70%;
    height: 30px;
    border-radius: 15px;
    background: rgba(255,255,255,0.5);
    border: none;
}
.login .butt:hover {
    background: rgba(255,255,255,0.8);
}