.login-wrapper {
    display: flex;
    height: 100vh;
    font-family: 'Segoe UI', sans-serif;
    background:
        linear-gradient(135deg, #ffffff 10%, #e0e0e0 30%, #cccccc 55%, #1a1a1a 90%),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 4px);
}

.login-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
   
}

.login-image img {
    max-height: 80%;
    max-width: 80%;
    border-radius: 32px;
   
}

.login-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.login-container {
    width: 100%;
    max-width: 460px;
    text-align: center;
}

.form-box {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.logo-container {
    margin-bottom: 50px;
}

.company-logo {
    max-width: 377px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #555;
}

.form-input {
    width: 100%;
    padding: 10px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
    border-color: #888;
    box-shadow: 0 0 6px rgba(160,160,160,0.2);
    outline: none;
}

.btn-submit {
    width: 50%;
    margin-top: 10px;
    padding: 12px;
    font-size: 17px;
    background-color: #1a1a1a;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #3b3b3b;
    transform: translateY(-1px);
}

.validation-summary-errors {
    text-align: left;
    margin-top: 20px;
    font-size: 14px;
}

.validation-summary-errors ul {
    padding-left: 20px;
    list-style: disc;
}

.navbar .page-title {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.7px;
  margin-left: 222px;
}

a {
    cursor: pointer !important;
}

@media (max-width: 768px) {

    .login-wrapper {
        flex-direction: column;
        padding: 20px;
        height: auto;
    }

    .login-content {
        padding: 20px;
        flex: none;
        width: 100%;
    }

    .login-container {
        max-width: 100%;
    }

    .form-box {
        padding: 30px 20px;
        margin: 20px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

    .company-logo {
        max-width: 240px;
        margin-bottom: 30px;
    }

    .btn-submit {
        width: 100%;
        font-size: 16px;
    }

    .form-input {
        font-size: 16px;
        padding: 12px;
    }

    .login-wrapper {
        flex-direction: column;
        margin-top: 150px;
        background: #fff;
        height: auto;
        padding: 20px 0;
    }
}
