/* style-startfree.css */

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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #dff1f9 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
}

.left-section {
    flex: 1;
    padding-right: 2rem;
}

.left-section h2 {
    color: rgb(0, 0, 0);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.left-section p {
    color: #686868;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.logos img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logos img:hover {
    opacity: 1;
}

.right-section {
    flex: 1;
}

.form-wrapper {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
}

.tab-btn {
    background: linear-gradient(135deg, #85c9e3 0%, #dff1f9 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.tab-btn.active {
    transform: translateY(-2px);
}

.tab-btn:hover {
    transform: translateY(-2px);
}

.form-content {
    display: flex;
    flex-direction: column;
}

.form-content input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s ease;
}

.form-content input:focus {
    border-color: #85c9e3;
    outline: none;
}

.checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 0.5rem;
}

.checkbox-container label {
    color: #666;
    font-size: 0.9rem;
}

.signup-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #85c9e3 0%, #dff1f9 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.signup-btn:hover {
    transform: translateY(-2px);
}

.signup-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.form-content p {
    text-align: center;
    margin-top: 1.5rem;
}

.form-content a {
    color: #85c9e3;
    text-decoration: none;
    font-weight: 500;
}

.form-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .left-section, .right-section {
        width: 100%;
    }

    .left-section h2, .left-section p {
        color: #333;
    }

    .left-section p {
        margin-bottom: 1rem;
    }

    .form-wrapper {
        padding: 1.5rem;
    }
}
