﻿.container-fluid {
    max-width: unset;
}

* {
    font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #e8e9e4;
    color: #333;
}

header-container {
    border-bottom: 1px solid #ddd;
    width:100%;
}

.logo-container {
    display: inline-block;
}

.col-xs-12 {
    padding:0;
}

.go4sea-logo {
    width: 200px;
    height: auto;
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 250px);
    padding: 40px 20px;
}

.login-wrapper {
    display: flex;
    max-width: 1200px;
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.image-section {
    flex: 1;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f1f1f1;
    position: relative;
}

    .image-section::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 20px;
        background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.08));
        pointer-events: none;
    }

.temple-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 8px;
}

.form-section {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    position: relative;
}

    .form-section::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 20px;
        background: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.05));
        pointer-events: none;
    }

.form-title {
    font-size: 28px;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.form-subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 40px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
}

    .form-label svg {
        width: 20px;
        height: 20px;
        margin-right: 10px;
        fill: #666;
    }

input[type='text'].form-input, input[type='password'].form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 14px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

    .form-input:focus {
        outline: none;
        border-color: #5a8fb4;
        background-color: #fff;
    }

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0 30px 0;
    font-size: 13px;
}

.remember-me {
    display: flex;
    align-items: center;
    color: #666;
}

    .remember-me input {
        margin-right: 6px;
    }

.forgot-password {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

    .forgot-password:hover {
        color: #5a8fb4;
    }

.CssConsolidatoreGOSE input.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #5a6c7d;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 30px;
}

    .submit-btn:hover {
        background-color: #4a5a68;
    }

.register-info {
    text-align: center;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

a.register-email {
    color: #5a8fb4 !important;
    text-decoration: none;
    font-weight: 600;
}

footer {
    border-top: 1px solid #ddd;
}

@media (max-width: 968px) {
    .login-wrapper {
        flex-direction: column;
    }

    .image-section {
        padding: 30px;
    }

    .form-section {
        padding: 40px 30px;
    }
}
