* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f5f5f5;
    min-height: 100vh;
}

.header {
    background-color: white;
    padding: 15px 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-section img {
    height: auto;
    width: 20%;
}

.certification-badge {
    width: 19%;
    height: 60px;
    border: 2px solid #ffff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: left;
    background-color: white;
}

.help-button {
    background-color: transparent;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    padding: 8px 16px;
}

.help-button:hover {
    background-color: #f7fafc;
    border-radius: 4px;
}

.main-container {
    display: flex;
    min-height: calc(100vh - 80px);
}

.left-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-color: #f7fafc;
}

.login-card {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 400px;
    border: 1px solid #e2e8f0;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-icon {
    width: 60px;
    height: 60px;
    background-color: #e53e3e;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.login-icon::before {
    content: '';
    width: 8px;
    height: 32px;
    background-color: white;
    position: absolute;
}

.login-icon::after {
    content: '';
    width: 32px;
    height: 8px;
    background-color: white;
    position: absolute;
}

.login-title {
    color: #e53e3e;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.login-subtitle {
    color: #e53e3e;
    font-size: 12px;
    font-weight: 500;
}

.login-heading {
    color: #333;
    font-size: 24px;
    font-weight: 400;
    margin-top: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #4a5568;
    font-size: 14px;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
}

.checkbox {
    width: 16px;
    height: 16px;
    accent-color: #4299e1;
}

.checkbox-label {
    font-size: 14px;
    color: #4a5568;
    cursor: pointer;
}

.login-button {
    width: 100%;
    background-color: #4299e1;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-bottom: 20px;
}

.login-button:hover {
    background-color: #3182ce;
}

.forgot-password {
    text-align: center;
}

.forgot-password a {
    color: #4a5568;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password a:hover {
    color: #4299e1;
    text-decoration: underline;
}

.right-section {
    flex: 1;
    background-image: url('/Images/Foto.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
}

@media all and (max-width: 768px) {
    .main-container {
        flex-direction: column;
        overflow-y: auto; 
        padding-top: 6rem;
    }

    .right-section {
        min-height: 250px;
        order: -1;
    }

    .left-section {
        padding: 20px;
    }

    .header {
        padding: 15px 20px;
        position: fixed;
    }

    .logo-section img{
        width: 90%;
        height: auto;
    }   
}

@media all and (max-width: 568px){
    .main-container {
        flex-direction: column;
        overflow-y: auto; 
        padding-top: 6rem;
    }

    .right-section {
        min-height: 250px;
        order: -1;
    }

    .left-section {
        padding: 20px;
    }

    .header {
        padding: 15px 20px;
        position: fixed;
    }

    .logo-section img{
        width: 70%;
        height: auto;
    }
    
}
