
:root {
    --primary-color: #1A3A42;
    --secondary-color: #1A3A42;
    --accent-color: #f8f9fc;
}

body {
    background: linear-gradient(135deg, #f8f9fc 0%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.login-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.login-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.card-header {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    border-bottom: none;
}

.company-logo {
    width: 190px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1.5rem;
   
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.company-logo:hover {
    transform: scale(1.05) rotate(5deg);
}

.btn-google {
    background: #dd4b39;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-google:hover {
    background: #c23321;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(221, 75, 57, 0.3);
}

.btn-google i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: #6c757d;
}

.divider::before, .divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #dee2e6;
}

.divider::before {
    margin-right: 1rem;
}

.divider::after {
    margin-left: 1rem;
}

.form-control {
    border-radius: 50px;
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(78, 115, 223, 0.25);
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    border-radius: 50px;
    padding: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 115, 223, 0.3);
}
