*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Poppins', sans-serif;
    background-color: #f0f0f0;
    color: #333;
}
.id_form{
    width: 100%;
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.id_form h1{
    text-align: center;
    margin-bottom: 20px;

}
.id_form input[type="text"],
.id_form input[type="number"],
.id_form input[type="date"],
.id_form input[type="file"],
.id_form input[type="submit"]{
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.id_form input:focus{
    outline: none;
}
.id_form input[type="submit"]{
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.id_form input[type="submit"]:hover{
    background-color: #555;
}
.id_form p{
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #555;
}
.id_form a{
    color: #333;
    text-decoration: none;
}
.id_form a:hover{
    text-decoration: underline;
}
.id_form .error{
    color: red;
    font-size: 12px;
    margin-top: -10px;
    margin-bottom: 10px;
}
.id_form .success{
    color: green;
    font-size: 12px;
    margin-top: -10px;
    margin-bottom: 10px;
}
.id_form .error, .success{
    display: none;
}
.id_form .error.active, .success.active{
    display: block;
}
.id_form .error.active{
    color: red;
}
.id_form .success.active{
    color: green;
}
.id_form .loader{
    display: none;
    width: 20px;
    height: 20px;
    border: 4px solid #ccc;
    border-top: 4px solid #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
.id_form .loader.active{
    display: block;
}