* {
    box-sizing: border-box;
}
body {
    background-color: #1A1A1A;
    color: #fff;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0; 
    overflow: hidden; 
    position: relative;
}
.login-page-logo {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 250px;
    height: auto;
}
.login-container {
    background-color: #1E1E1E;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.login-container h2 {
    font-size: 28px;
    margin-bottom: 10px;
}
.login-container p {
    color: #888;
    margin-bottom: 30px;
}
.input-group {
    margin-bottom: 20px;
}
input {
    width: 100%;
    padding: 15px;
    border: 1px solid #333;
    border-radius: 8px;
    background-color: #252525;
    color: #fff;
    font-size: 16px;
}
.forgot-password {
    display: block;
    text-align: right;
    color: #AAA;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 25px;
}
button {
    width: 100%;
    padding: 15px;
    background-color: #FBC02D;
    color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}
.error-message {
    color: #ff4d4d;
    margin-top: 15px;
    height: 20px;
}
.footer-legal {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    color: #888;
    font-size: 12px;
}
.footer-legal a {
    color: #AAA;
    text-decoration: underline;
}

/* In agent/css/login.css */

.login-container {
    background-color: #1E1E1E;
    padding: 50px 40px;      /* More breathing room */
    border-radius: 12px;     /* Smooth corners */
    text-align: center;
    width: 400px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6); /* Better depth */
    border: 1px solid #333;  /* Subtle border */
}

/* Add this new class for the button */
.microsoft-btn {
    width: 100%;
    padding: 15px;
    background-color: #FBC02D; /* The exact Project Yellow */
    color: #000;               /* Black text for contrast */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.microsoft-btn:hover {
    background-color: #ffcf4a; /* Matches .action-btn-start:hover from agent.css */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 192, 45, 0.3);
}

.microsoft-btn i {
    font-size: 20px;
}