* {
    margin: 0;
    padding: 0;
    outline: none;
}

body {
    background: linear-gradient(60deg, #5754a8, #519a98);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

.container {
    position: relative;

}

form {
    background: rgba(255, 255, 255, .3);
    padding: 3rem;
    height: 600;
    border-radius: 20px;
    border-left: 2px solid rgba(255, 255, 255, .3);
    border-top: 2px solid rgba(255, 255, 255, .3);
    box-shadow: 10px 5px 5px 1px rgba(0, 0, 0, .2);
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -moz-backdrop-filter: blur(10px);

}





p {
    color: white;
    font-weight: 500;
    opacity: 7;
    font-size: 1.4rem;
    margin-bottom: 60px;

}

input {

    background-color: transparent;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, .3);
    border-top: 1px solid rgba(255, 255, 255, .3);
    padding: 1rem;
    width: 200px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    box-shadow: 4px 4px 60px rgba(0, 0, 0, .2);
    color: white;
    font-weight: 500;
    margin-bottom: 32px;
}

a {
    color: #ddd;
    text-decoration: none;
    font-size: 15px;
    transition: all .3s;
}

a:hover {
    text-shadow: 2px 2px 6px rgba(0, 0, 0);
}

::placeholder {
    color: white;
}

input:hover,
input[type="login"]:focus,
input[type="email"]:focus,
input[type="mdp"]:focus {
    background: rgba(255, 255, 255, .1);
    box-shadow: 4px 4px 60px 8px rgba(0, 0, 0, .2);
    transition: all .3s;
}

input[type="button"] {
    cursor: pointer;
    margin-top: 10px;
    font-size: 1rem;
    width: 150px;

}