@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Poppins:wght@400;600;700&family=Roboto:wght@400;700&display=swap');

*, html, body {
    font-family: 'Poppins', sans-serif;
    margin:0;
    padding:0;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #BEBEBE;
}

.card {
    width: 300px;
    height: 400px;
    border-radius: 13px;
    margin: 20px;
    padding: 15px;
    background-color: white;
}

.logo {
    display: flex;
    margin:auto;
    width:300px;
    height:100px;
    margin-top:1.5em;
    margin-bottom:1.5em;
    justify-content:center;
    align-items:center;
    /* border:1px solid black; */
}

.title {
    text-align:center;
    color: #FF7F00;
    font-weight: bold;
    font-size: 2.5em;
}

.form-group {
    display:flex;
    justify-content:center;
}

.main_div{
    padding-bottom: 30px;
}
input,
textarea {
    background: none;
    color: black;
    font-size: 18px;
    padding: 10px 10px 10px 15px;
    display: block;
    width: auto;
    border: none;
    border-radius: 10px;
    border: 1px solid #c6c6c6;
}
input:hover{
    border: 2px solid black;
}
input:focus,
textarea:focus {
    outline: none;
    border: 2px solid black;
}
input:focus ~ label, input:valid ~ label,
textarea:focus ~ label,
textarea:valid ~ label {
    top: -5px;
    font-size: 12px;
    color: #000;
    left: 11px;
}
input:focus ~ .bar:before,
textarea:focus ~ .bar:before {
    width: 320px;
}

input[type="password"] {
    letter-spacing: 0.3em;
}
.group{
    position: relative;
}
label {
    color: #c6c6c6;
    font-size: 16px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 15px;
    top: 12px;
    transition: 300ms ease all;
    background-color: #fff;
    padding: 0 2px;
}

.button-group {
    margin-top: 1em;
    width: 100%;
    display:flex;
    justify-content:center;
}

button {
    width: 200px;
    height: 50px;
    background: #FF9933;
    border: none;
    cursor:pointer;
    color: white;
    font-size: 22px;
    border-radius: 10px;
}

button:hover {
    background: #FF8B17;
}