* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  /*  font-family: Arial, Helvetica, sans-serif; */
  font-family: "Montserrat", sans-serif;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0c1924;
}

.nav-menus a {
    color: red;
}

form {
    backdrop-filter: blur(3rem);
    height: 28rem;
    width: 30rem;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 0 2rem 0.5rem #00000042;
    display: grid;
}

form h3 {
    font-size: 2rem;
    display: flex;
    color: white;
    justify-content: center;
    margin-bottom: 8px;
    margin-top: 1rem;
}

.register {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fdfdfd;
    gap: 5px;
    margin-bottom: 2rem;
}

.register a {
    color: #145697;
}

input[type="text"] {
    width: 100%;
    padding: .9rem 1.2rem;
    font-size: 1.1rem;
    border-radius: 7px;
    border: none;
    color: whitesmoke;
    background-color: #24496974;
    margin-bottom: 1.5rem;
} 

.submit {
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: #145697;
    padding: 0.9rem;
    height: 3rem;
    border-radius: 7px;
    border: none;
}

button[type="submit"] {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    text-decoration: none;
    color: white;
    font-weight: 900;
    border: none;
    
}

.passkey {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 2rem;
}

.passkey a {
    text-decoration: none;
    color: whitesmoke;
    background-color: #813e92;
    border-radius: 7px;
    padding: 0.9rem;
}

.telegram {
    display: flex;
    justify-content: center;
    align-items: center;
}

.telegram a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 1.2rem;
    background-color: #3079c6;
    padding: 0.9rem;
    width: 55%;
    border-radius: 1.5rem;
    text-decoration: none;
    color: white;
    border: none;
}