body {
    font-family: "Inter",system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.login-container {
    padding: 20px;
}

.login-card {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 97, 247, 0.1) !important;
}

.login-form {
    padding: 40px !important;
}

.logo-container {
    margin-bottom: 30px;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text-primary {
    color: #0061f7;
}

.logo-text-secondary {
    color: #2b2d42;
    font-weight: 600;
}

.signin-title {
    color: #2b2d42;
    font-size: 2rem;
    margin-bottom: 30px;
}

.custom-input {
    border: 1px solid #dfe3e8;
    border-radius: 8px;
    padding: 12px 15px;
    height: 58px;
    font-size: 1rem;
    transition: all 0.3s;
}

.custom-input:focus {
    border-color: #0061f7;
    box-shadow: 0 0 0 0.2rem rgba(67, 97, 238, 0.15);
}

.forgot-password {
    color: #0061f7;
    font-size: 0.9rem;
    font-weight: 500;
}

.signin-btn {
    background: #0061f7;
    border: none;
    height: 50px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.signin-btn:hover {
    background: #0061f7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.2);
}

.install-app a {
    color: #0061f7;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.install-app a:hover {
    color: #0061f7;
    transform: translateY(-2px);
}

.info-section {
    background-color: #0061f7;
    position: relative;
    overflow: hidden;
}

.info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://img.freepik.com/free-photo/front-view-protective-glasses-with-hard-hat-headphones_23-2148773471.jpg?semt=ais_hybrid&w=740');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.info-content {
    position: relative;
    z-index: 1;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.info-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.info-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.feature-btn {
    width: fit-content;
    padding: 12px 25px;
    font-weight: 600;
    color: #0061f7;
    border: none;
    transition: all 0.3s;
}

.feature-btn:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.form-floating label {
    padding-left: 15px;
}

@media (max-width: 991px) {
    .login-card {
        max-width: 500px;
    }
}