@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Fredoka', sans-serif;
    /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
    background: linear-gradient(135deg, #fff, #fff);
    min-height: 100vh;
}

.main-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.content-wrapper {
    background: white;
    /* border-radius: 20px; */
    border: none;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
    max-width: 1200px;
    width: 100%;
    display: flex;
    min-height: 600px;
}

.left-section {
    flex: 1;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background: url('../img/hero/background.png') no-repeat center center fixed;
    background-size: cover;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.social-icons {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon.skype {
    background-color: #00aff0;
}

.social-icon.bitcoin {
    background-color: #f7931a;
}

.social-icon.stackoverflow {
    background-color: #f48024;
}

.social-icon.adobe {
    background-color: #da1f26;
}

.social-icon.android {
    background-color: #a4c639;
}

.social-icon.dollar {
    background-color: #6b7c32;
}

.social-icon.paypal {
    background-color: #003087;
}

.social-icon.evernote {
    background-color: #00a82d;
}

.social-icon.bitcoin2 {
    background-color: #f7931a;
}

.bible-illustration {
    /* width: 280px; */
    height: 200px;
    margin-bottom: 30px;
    background: url('../img/features/image.png') no-repeat center;
    background-size: contain;
}

.bible-illustration-2 {
    width: 280px;
    height: 200px;
    margin-bottom: 30px;
    background: url('../img/features/image-2.png') no-repeat center;
    background-size: contain;
}

.bible-illustration-3 {
    width: 280px;
    height: 200px;
    margin-bottom: 30px;
    background: url('../img/features/image-3.png') no-repeat center;
    background-size: contain;
}

.welcome-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    max-width: 700px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}





.welcome-subtitle {
    font-size: 1.0rem;
    line-height: 1.6;
    color: #333;
    opacity: 0.9;
    max-width: 300px;
}

.carousel-indicators {
    bottom: -40px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
}

.carousel-indicators button.active {
    background-color: #8B4513;
}

.right-section {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.signup-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

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

.form-label {
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    padding: 15px 50px 15px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.form-control:focus {
    border-color: #8B4513;
    box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.25);
    background-color: white;
}

.input-wrapper {
    position: relative;
    

}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="number"] {
    padding: 10px 8px;
    /* Adjust values as needed */
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
    font-size: 18px;
}

.btn-signup {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    width: 100%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
    background: linear-gradient(135deg, #A0522D 0%, #8B4513 100%);
}

.divider {
    text-align: center;
    color: #adb5bd;
    margin: 20px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e1e5e9;
    z-index: 1;
}

.divider span {
    background-color: white;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.btn-google {
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
    color: #555;
    width: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-google:hover {
    border-color: #8B4513;
    color: #8B4513;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.2);
}

.signin-link {
    text-align: center;
    margin-top: 30px;
    color: #666;
}

.signin-link a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

.signin-link a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        margin: 20px;
    }

    .left-section {
        padding: 40px 30px;
    }

    .right-section {
        padding: 40px 30px;
    }

    .welcome-title {
        font-size: 1.5rem;
    }

    .signup-title {
        font-size: 2rem;
    }

    .social-icons {
        position: static;
        margin-bottom: 20px;
        justify-content: center;
    }
}