* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f8fafc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    line-height: 1.6;
    color: #334155;
}

.login-container {
    width: 100%;
    max-width: 400px;
}

.login-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.login-header {
    margin-bottom: 32px;
}

.login-header h2 {
    text-align: center;
    font-size: 1.875rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.login-header p {
    color: #404244;
    font-size: 0.875rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
}

label {
    font-size: 14px;
    font-weight: bold;
}
input {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px 8px 16px;
    color: #1e293b;
    font-size: 16px;
    width: 100%;
}
input.readonly{
    border: 0px;
}

input[type="submit"], input[type="button"] {
    background:#0d63ee;
    color:white;
}

input[type="submit"]:hover, input[type="button"]:hover {
    background:#024cc2;
    color:white;
}


.alert {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 20px;
    border-left:5px solid #3b82f6;
    padding-left: 10px;
}

.alert-error {
    border-color: #ef4444;
}
.alert-info {
    border-color: #3b82f6;
}



@media (max-width:500px) {
    body {
        padding: 0;
        background:white;
    }
    .login-card {
        border:0;
        box-shadow: none;
        height: 100%;
    }
}