* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}



.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f1f1f1;
}

.box {
    background: #ffffff;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 32px 64px -48px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
}

.form-box {
    width: 450px;
    margin: 0 10px;
}

.form-box header {
    font-size: 25px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 10px;
}

.form-box form .field {
    display: flex;
    margin-bottom: 10px;
    flex-direction: column;
}

.form-box form .input input {
    height: 40px;
    width: 100%;
    font-size: 16px;
    padding: 0 10px;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    outline: none;
}


.logo img {
    width: 150px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    image-rendering: crisp-edges;
}

.btn {
    height: 35px;
    background: #4caf50; 
    border: 0;
    border-radius: 5px;
    color: #ffffff; 
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    padding: 0 10px;
    text-align: center;
}

.btn:hover {
    background-color:#b6b8b6 ;}

.submit {
    width: 100%;
}



.required {
    color: red;
}

.required {
    color: red; 
    font-size: 18px; 
    display: inline; 
}

