*{
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}
body{
    background-color: #171f2e;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
    max-width: 500px;
}
.form_area, .form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #374151;
    height: auto;
    width: 100%;
    padding: 30px 20px;
    border: 2px solid #264143;
    border-radius: 20px;
    box-shadow: 3px 4px 0px 1px #3b82f6;
}
.title {
    color: white;
    font-weight: 900;
    font-size: 2em;
    margin-top: 20px;
    margin-bottom: 20px;
}
.sub_title {
    color: white;
    font-weight: 600;
    margin: 5px 0;
}
.form_group {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    margin: 15px 0;
    width: 90%;
}
form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.form_style, input {
    outline: none;
    border: 2px solid #264143;
    box-shadow: 3px 4px 0px 1px #3b82f6;
    width: 100%;
    padding: 15px;
    border-radius: 4px;
    font-size: 16px;
    background-color: #1f2937;
    color: white;
}
.form_style::placeholder {
    color: #9ca3af;
}
.form_style:focus, .btn:focus {
    transform: translateY(4px);
    box-shadow: 1px 2px 0px 0px #3b82f6;
}
.btn {
    padding: 18px;
    margin: 30px 0px;
    width: 90%;
    font-size: 18px;
    background: #3b82f6;
    border-radius: 10px;
    font-weight: 800;
    box-shadow: 3px 3px 0px 0px white;
    cursor: pointer;
    color: white;
    border: none;
}
.btn:hover {
    opacity: 0.9;
}
.link {
    font-weight: 800;
    color: #3b82f6;
    padding: 5px;
    text-decoration: none;
}
p {
    color: white;
}
.error-message {
    color: #ff6b6b;
    font-size: 14px;
    margin-top: 5px;
    text-align: left;
    width: 100%;
}
input.error {
    border-color: #ff6b6b;
}
.otpverify {
    width: 100%;
    display: none;
    gap: 20px;
}
/* Make the form responsive */
@media (max-width: 600px) {
    .container {
        padding: 0 15px;
    }
    
    .form_area, .form {
        padding: 20px 15px;
    }
}
/* Remove default center tag styling */
center {
    display: block;
    width: 100%;
}