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

body {
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

h1 {
    font-weight: bold;
    font-size: 40px;
    padding: 20px 0 40px ;
}

.register-container {
    display: flex;
    flex-direction: column;
    background-color: #EBEBEB;
    height: 650px;
    width: 400px;
    justify-content: start;
    border: 0px solid transparent;
    border-radius: 20px;
    padding: 10px;
}

label {
    display: block;
    justify-self: start;
    margin: 50px 0 10px 30px;
}

#RegisterText {
    margin: 20px 0px;
}

.links a {
    text-decoration: none;
    color: grey;
}

.links a:hover {
    text-decoration: underline;
}



input {
    width: 300px;
    height: 50px;
    font-size: 16px;
    padding: 15px;
    border: 0px solid transparent;
    box-shadow: 2px;
    color: black;
    border-radius: 10px;
    box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.1),
                inset -3px -3px 6px rgba(255, 255, 255, 0.8);
}

input:focus {
    outline: none;
}



button:disabled{
    margin: 50px 0 70px 0;
    width: 200px;
    height: 55px;
    background-color: grey;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 20px;
    cursor: not-allowed;
    opacity: 0.6;
}

button:not(:disabled){
    margin: 50px 0 70px 0;
    width: 200px;
    height: 55px;
    background-color: blue;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
}

p {
    margin: 10px;
}

.otpi {
    height: 50px;
    width: 40px;
    font-size: 16px;
    padding: 15px;
    border: 0px solid transparent;
    box-shadow: 2px;
    color: black;
    border-radius: 10px;
    box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.1),
                inset -3px -3px 6px rgba(255, 255, 255, 0.8);
}
