/* Full-page background */
body {
    background: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Login card */
.login-card {
    background:#fff;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 30px;
    width: 100%;
    max-width: 400px;
}

/* Header logo and title */
.company-logo {
    display: block;
    margin: 0 auto 15px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid blue;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-header {
    text-align: center;
    margin-bottom: 10px;
    padding-bottom: 20px;
}

.login-header h2 {
    font-size: 3rem;
    font-weight: bold;
    color: blue;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

/* Input fields */
.form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.form-control:focus {
    border-color: aqua;
    box-shadow: 0 0 8px rgba(26, 115, 232, 0.4);
    outline: none;
}

.form-control:hover {
    border-color: #1a73e8;
}

/* Login button */
.btn-primary {
    background: #1a73e8;
    border: none;
    padding: 12px 15px;
    font-size: 20px;
    font-weight: bold;
    width: 100%;
    border-radius: 8px;
    color: white;
    transition: 0.3s ease-in-out;
}

.btn-primary:hover {
    background: #0f5ec7;
}

/* Links */
.login-links {
    text-align: center;
    margin-top: 15px;
}

.login-links a {
    color: #1a73e8;
    font-size: 14px;
    text-decoration: none;
}

.login-links a:hover {
    text-decoration: underline;
}

/* Checkbox style */
.form-check-input {
    transform: scale(1.2);
    /* Make checkbox slightly larger */
    cursor: pointer;
}

/* General spacing adjustments */
.mb-3 {
    margin-bottom: 20px !important;
}

.logo{
    margin-left: 5px;
    margin-bottom:5px;
   
}