
@import url('https://fonts.googleapis.com/css?family=Work+Sans:400,300,600,400italic,700');
@import url('https://fonts.googleapis.com/css?family=Sacramento');

body {
    font-family: 'Work Sans', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #828282;
    background-color: #fff;
    background-image: url('../images/1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    height: 100vh;
    margin: 0;
}

.main-slider {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5); /* Overlay to ensure readability and match theme */
}

.display-table {
    display: flex;
    justify-content: center;
    width: 100%;
}

.display-table-cell {
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

.login-box-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
}

.login-box .title {
    font-family: 'Sacramento', Arial, serif;
    color: #9B5351;
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
}

.login-box p {
    font-family: 'Work Sans', Arial, sans-serif;
    font-size: 16px;
    color: #828282;
    margin-bottom: 30px;
}

.form-control {
    height: 54px;
    background: #fff;
    border: 1px solid #d4d4d4;
    color: #828282;
    font-size: 16px;
    border-radius: 4px;
    box-shadow: none;
    text-align: center;
    margin-bottom: 20px;
}

.form-control:focus {
    background: #fff;
    border-color: #9B5351;
    box-shadow: none;
}

.btn-primary {
    background-color: #9B5351;
    border-color: #9B5351;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    padding: 15px 30px;
    border-radius: 30px; /* Matching rounded buttons if seen, or standard radius */
    font-size: 14px;
    transition: 0.5s;
    width: 100%; /* Full width button looks better in login box */
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: #fff !important;
    color: #9B5351 !important;
    border-color: #fff !important;
}

.icon-heart {
    color: #9B5351;
    font-size: 40px;
    margin-bottom: 15px;
    display: inline-block;
}

/* Ensure no-js helper doesn't break layout if present in classes */
.no-js body {
    overflow: auto;
}
