* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.modal-overlay { 
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal {
    display: flex;
    width: 100%;
    max-width: 600px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-left {
    width: 40%;
    background-color: #1DC4A9;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.modal-logo {
    font-size: 4rem;
    color: #FF7F27;
    font-weight: bold;
    position: relative;
    z-index: 2;
}


.modal-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    clip-path: polygon(0 100%, 100% 30%, 100% 100%, 0% 100%);
}

.modal-content {
    width: 60%;
    padding: 40px;
}

.modal-title {
    color: #FF7F27;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.divider {
    text-align: center;
    margin: 25px 0;
    color: #777;
    position: relative;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #000;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 2px solid #1DC4A9;
    outline: none;
    transition: border-color 0.2s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    border-bottom: 1px solid #1DC4A9;
}

.phone-container {
    display: flex;
    gap: 10px;
}

.country-code {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    width: 80px;
    cursor: pointer;
}

.phone-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
}

.continue-btn {
    width: 100%;
    background-color: #FF7F27;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px 0;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 20px;
    margin-bottom: 30px;
}

.continue-btn:hover {
    background-color: #e06a1b;
}


/* Responsive design */
@media (max-width: 768px) {
    .modal {
        flex-direction: column;
        max-width: 400px;
    }
    
    .modal-left {
        width: 100%;
        padding: 30px;
    }
    
    .modal-content {
        width: 100%;
    }
}