@import url('https://fonts.googleapis.com/css2?family=Shrikhand&display=swap');


body{
    background-color: #FFB6C1;
    font-family: "Shrikhand", serif;
    letter-spacing: 2px;
}

h1{
    text-align: center;
    color: #FF69B4;
    font-size: 75px;
}

h2{
    text-align: center;
    color: white;
}

input{
    display: block;
    margin: auto;
    text-align: center;
    height: 25px;
    font-family: "Shrikhand", serif;
}

.loginBox{
    width: 500px;
    height: 500px;
    background-image: url("Untitled.png");
    border: 5px solid #FF69B4;
    border-radius: 20px;
    color: white;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%,-50%);
    box-sizing: border-box;
    margin-top: 15%;
    padding: 70px 30px;
}

button{
    display: block;
    margin: auto;
    margin-top: 100px;
    width: 200px;
    height: 100px;
    border: 5px solid #FF69B4;
    border-radius: 10px;
    box-shadow: 2px 2px #3b3b3b;
    font-family: "Shrikhand", serif;
}

button:hover{
    background-color: #FFCCCB;
    box-shadow: 5px 5px #3b3b3b;
}

button:active{
    background-color: #AA336A;
    box-shadow: 2px 2px #3b3b3b;
}

#hint{
    visibility: hidden;
    font-family: "Shrikhand", serif;
}

@media(max-width: 600px){
    h1{
        text-align: center;
        color: #FF69B4;
        font-size: 300%;
    }
    
    h2{
        text-align: center;
        color: white;
    }
    
    input{
        display: block;
        margin: auto;
        text-align: center;
        height: 25px;
        font-family: "Shrikhand", serif;
    }
    
    .loginBox{
        width: 80%;
        height: 50%;
        margin-top: 5%;
        background-image: url("Untitled.png");
        border: 5px solid #FF69B4;
        border-radius: 20px;
        color: white;
        top: 50%;
        left: 50%;
        position: absolute;
        transform: translate(-50%,-50%);
        box-sizing: border-box;
    
    }

    button{
        display: block;
        margin: auto;
        margin-top: 50px;
        margin-bottom: 50px;
        width: 200px;
        height: 100px;
        border: 5px solid #FF69B4;
        border-radius: 10px;
        box-shadow: 2px 2px #3b3b3b;
        font-family: "Shrikhand", serif;
    }
}
