body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    margin: 0;
    padding: 0;
}

.form-container,
.dashboard {
    width: 90%;
    max-width: 500px;
    margin: 30px auto;
    background: white;

    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

input,
select,
button {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
}

button {
    background-color: #1e90ff;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #005cbf;
}

a {
    color: #1e90ff;
    text-decoration: none;
}

.doc-card {
    background: #fafafa;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
}




.password-wrapper {
    position: relative;
}

.password-wrapper input {
    width: 100%;
    padding-right: 40px;
    /* Space for the icon */
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #555;
}

.password-wrapper input {

    width: 95%;
    padding: 10px 40px 10px 10px;
    /* right padding for icon space */
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;

}



/*spinner*/
.submit-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    width: 100%;
    border-radius: 8px;
    font-size: 16px;
}

.submit-btn:disabled {
    background-color: #aaa;
    cursor: not-allowed;
}

.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid #fff;
    border-top: 3px solid #333;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.error-msg {
    color: red;
    font-size: 14px;
    margin-top: -8px;
    margin-bottom: 10px;
}



.logo {
    position: absolute;
    top: 22px;
    left: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 250px;
    height: auto;
}



/* Responsive Design */
@media screen and (max-width: 768px) {
    .logo {
        top: 15px;
        left: 15px;
    }

    .logo img {
        width: 200px;
    }




}

@media screen and (max-width: 480px) {
    .logo {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo img {
        width: 180px;
    }
}