body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #FFFFFF;
    width: 100%;
    height: 100vh;
    position: relative;
}

.header {
    position: absolute;
    width: 100%;
    height: 180px;
    top: 0;
    left: 0;
    background: rgba(255, 138, 0, 0.75);
}

.dashboard-text {
    position: absolute;
    top: 53px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 60px;
    line-height: 73px;
    font-weight: 400;
    color: #000000;
}

.login-container {
    position: absolute;
    width: 500px;
    top: 250px;
    left: 50%;
    transform: translateX(-50%);
}

.login-container h2 {
    font-size: 50px;
    margin-bottom: 40px;
    text-align: center;
}

.input-group {
    margin-bottom: 30px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    height: 80px;
    background: #D9D9D9;
    border-radius: 10px;
    border: none;
    padding-left: 20px;
    font-size: 30px;
    color: #919191;
}

button[type="submit"] {
    width: 60%;
    max-width: 300px;
    height: 60px;
    background: #FFB800;
    border: none;
    border-radius: 50px;
    font-size: 30px;
    color: #000000;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}


button[type="submit"]:hover {
    background: #ffaa00;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
    border-radius: 10px;
    padding: 20px;
    font-size: 28px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
    box-sizing: border-box;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}