


/* background image gotten from wallpaperaccess.com */
body {
    background-image: url(https://wallpaperaccess.com/full/740167.jpg);
    background-size: cover;
    text-align: center;
}

.box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; 
    max-width: 400px; 
    padding: 40px;
    background: rgba(0, 0, 0, 0.8);
    box-sizing: border-box;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
    border-radius: 30px;
    line-height: 30px;
}

h1 {
    color: #00BFFF;
}

form {
    color: white;
}

input[type="email"],
input[type="password"] {
    width: 100%; 
    margin-bottom: 15px;
    border-radius: 20px;
    line-height: 24px;
    border-color: #00BFFF;
    padding: 10px;
}

.btn {
    width: 100%; 
    border-radius: 20px;
    background-color: #00BFFF;
    color: white;
    border-width: 15px;
    box-shadow: white;
    cursor: pointer;
}

.btn:hover {
    transform: scale(1.1);
    transition: all 1s;
}
a{
    color: white;
}