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

.overall {
    width: 100%;
    height: 100vh;
    background: url(./doc2.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.patient_con {
    width: 700px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

form {
    width: 100%;
    height: 100%;

}

.label {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-left: 50px;
    padding: 40px;
}

h1 {
    text-align: center;
    font: bold;
    font-size: 50px;
    color: blue;
}

label {
    font: bold;
    font-size: 20px;
    margin-right: 370px;
}

input {
    width: 80%;
    height: 40px;
    caret-color: grey;
    outline: none;
    border: none;

}

button {
    width: 180px;
    margin-top: 20px;
    height: 50px;
    color: white;
    background-color: blue;
    outline: none;
    cursor: pointer;
    border: none;
    transition: 1s;
}

button:hover {
    background-color: white;
    color: blue;
}

a {
    text-decoration: none;
    color: blue;
}