.col-md-6{
 padding: 3px;
}
#registerMainContainer {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
}

#registerLogo {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

#registerCardContainer {
    background-color: #ffffff;
    border: none;
    border-radius: 15px;
    width: 100%;
}

#registerEmailLabel, #registerPasswordLabel {
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-control {
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding: 0.8rem 1rem;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.15);
    border-color: #ff8c00;
}

#registerSubmitButton {
    background-color: #ff8c00;
    border: none;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
    border-radius: 10px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

#registerSubmitButton:hover {
    background-color: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

#registerGoogleButton {
    padding: 0.5rem;
    transition: all 0.3s ease;
    border-radius: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    background-color: white;
}

#registerGoogleButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
}

#registerGoogleIcon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.form-floating > .form-control {
    padding: 1rem 0.75rem;
}

.form-floating > label {
    padding: 1rem 0.75rem;
}

#registerCardFooter {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    border-radius: 0 0 15px 15px;
}

#registerFooterLinks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

#registerLoginLink {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

#registerLoginLink:hover {
    color: #ff8c00;
}

#registerLoginLink::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ff8c00;
    transition: width 0.3s ease;
}

#registerLoginLink:hover::after {
    width: 100%;
}

#registerTitle {
    color: #333;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}


/* Tablet ve küçük ekranlar */
@media (max-width: 991px) {
    #registerMainContainer {
        max-width: 600px;
        padding: 1.5rem;
    }
}
 #register-row{
        margin-right: 0;
        margin-left: 0;
    }

/* Tablet */
@media (max-width: 768px) {
    #register-container{
    margin-top: 50px;
}
    #registerMainContainer {
        max-width: 550px;
        padding: 1.25rem;
    }
    #register-row{
        margin-right: 0;
        margin-left: 0;
    }
    
    #registerFooterLinks {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Mobil */
@media (max-width: 576px) {
    #registerMainContainer {
        max-width: 100%;
        padding: 1rem;
        
        border-radius: 15px;
    }

    #registerCardBody {
        padding: 1rem;
    }

    #registerSubmitButton {
        min-width: 100px;
    }

    #registerEmailLabel, #registerPasswordLabel {
        font-size: 0.85rem;
    }

    #registerLoginLink {
        font-size: 0.85rem;
    }

    #registerTitle {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
}

/* Çok küçük ekranlar */
@media (max-width: 360px) {
    #registerMainContainer {
        margin: 0.25rem;
        padding: 0.75rem;
    }

    #registerCardBody {
        padding: 0.75rem;
    }

    #registerSubmitButton {
        min-width: 90px;
        padding: 0.5rem 1rem;
    }

    #registerTitle {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
} 