*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.main_outer{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.banner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(188, 6, 6);
    padding: 8px;
}
.left button{
    border: 0;
    outline: 0;
    background-color: transparent;
    color: white;
    font-size: 1.2rem;
}
.right{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
    color: white;
}
.hospital_nme{
    font-size: 1.5rem;
    color: white;
}
.main{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.main h1{
    margin-bottom: 25px;
    color: rgb(0, 187, 255);
}
.content{
    width: max(300px,60%);
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
    padding: 15px;
    border-radius: 10px;
    transition: 0.5s;
}
.content input,.content select{
    padding: 8px;
    border: 1px solid gold;
    outline: none;
    border-radius: 8px;
}
.content:focus-within{
    box-shadow: 0 0 5px #333;
}
.content label{
    margin-bottom: 5px;
}
.btn{
    display: flex;
}
.btn button{
    border: 1px solid gold;
    background-color: gold;
    border-radius: 10px;
    padding: 8px 20px;
    transition: 0.35s;
}
.btn button:focus{
    background-color: rgb(255, 183, 0);
    color: white;
}
.bottom{
    display: flex;
    justify-content: center;
    background-color: lightblue;
    font-size: 0.75rem;
}