.login-modal .modal-dialog {
    max-width: 400px;
    margin: 1.75rem auto;
}

.login-modal .modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}

.login-modal .modal-body {
    padding: 1rem 2rem 2rem;
    text-align: center;
}


.login-modal .modal-title {
    font-weight: bold;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.login-modal .modal-subtitle {
    color: #6c757d;
    margin-bottom: 2rem;
}

.login-modal .form-control {
    height: 50px;
    border-radius: 10px;
    text-align: center;
    font-size: 1rem;
}

.login-modal .input-group-text {
    border-radius: 10px 0 0 10px;
    background-color: #f8f9fa;
}


.login-modal .btn-primary {
    background-color: #6c757d;
    border-color: #6c757d;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
}

.login-modal .btn-primary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

.login-modal .terms {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 1rem;
}

.login-modal .terms a {
    color: #000;
    text-decoration: underline;
}

.login-modal .modal-content .back-arrow {
    position: absolute;
    font-size: 30px;
    top: 20px;
    left: 20px;
    cursor: pointer;
    background-color: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1050;
    transition: transform 0.2s, box-shadow 0.2s;
}

.login-modal .modal-content .back-arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.login-modal .lottie-container {
    position: relative;
}

/* Address Type Selection Buttons */
.address-type-container {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.address-type-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #f8f9fa;
    border: 1px solid #e2e2e2;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #253D4E;
}

.address-type-btn:hover {
    border-color: #3BB77E;
}

.address-type-btn.active {
    background-color: #e7f8f0;
    border-color: #3BB77E;
    color: #3BB77E;
}

.address-type-btn i {
    font-size: 16px;
}

/* Custom Address Type Input */
#custom-address-type {
    border: none;
    border-bottom: 1px solid #e2e2e2;
    padding: 8px 0;
    font-size: 14px;
    width: 200px;
    margin-left: 10px;
    transition: all 0.3s ease;
    background-color: transparent;
}

#custom-address-type:focus {
    border-bottom-color: #3BB77E;
    box-shadow: 0 1px 0 0 #3BB77E;
    outline: none;
} 