* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}



.container {
    background: #d9d9d9;
    padding: 2.5rem;
    border-radius: 24px;
    width: 700px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    height: auto;
    margin: 1rem;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(to right, #13114F, #312E81);
}

body::after{
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url("Rectangle 1013.png") no-repeat center center/cover;
    filter: blur(1px);
}

.wrapper {
    display: flex;
    justify-content: space-evenly;
    overflow: hidden;
    flex-wrap: nowrap;
}

.right-section img {
    width: 50%;
}

.right-section {
    width: 50%;
    display: grid;
    align-content: space-evenly;
    text-align: center;
}

.right-section h1 {
    font-size: 2rem;
    margin-bottom: 0.2rem;
    color: white;
}

.right-section p {
    color: white;
    width: 49%;
    position: relative;
    left: 25.5%;

}

.logo img{
    width: 170px;
}


.country-code img {
    width: 24px;
    height: 16px;
}


h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: #666;
    margin-bottom: 2rem;
}

.section-title {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
}

.phone-input {
    display: flex;
    gap: 0.5rem;
}

.country-code {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    background: #f9fafb;
}

.flag {
    width: 24px;
    height: 16px;
}

input, select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
}

input:focus, select:focus {
    outline: none;
    border-color: #4f46e5;
    ring: 2px solid #4f46e5;
}

.submit-btn {
    background: #2233dd;
    color: white;
    border: none;
    padding: 0.12rem 1rem;
    border-radius: 4px;
    cursor: pointer;
}

.submit{
    display: flex;
    flex-direction: row-reverse;
}

.submit-btn svg{
    width: 30px;
}

.submit-btn:hover {
    background: #4338ca;
}

.login-link {

    margin-top: 1.5rem;
    color: #374151;
}

.login-link a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
}

.login-link a:hover {
    text-decoration: underline;
}
.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
}

@media screen and (max-width: 950px) {
    .right-section {
        display: none;
    } 
}