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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    height: 100vh;
    overflow: hidden;
}

.page-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
}

.form-container {
    background-color: #ffffff;
    
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
}

.form-content {

    width: 100%;
    max-width: 420px;
}

.brand-logo {
    width: 56px;
    height: 56px;
    background-color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    margin-left: 35px;
}

.brand-logo img {
     border-radius: 12px;
}

.form-header {
    margin-bottom: 2rem;
}

.heading-primary {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.text-muted {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
}

.login-form {
    display: flex;
    flex-direction: column;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
}

.input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 11px;
    outline: none;
    transition: all 0.2s ease;
        box-sizing: border-box;
}

.input-field:focus {
    background-color: #ffffff;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.password-input {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input .input-field {
    padding-right: 3rem;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.password-toggle:hover {
    color: #6b7280;
}

.link-forgot {
    font-size: 0.875rem;
    color: #374151;
    text-decoration: underline;
    margin-bottom: 1.5rem;
    align-self: flex-start;
    transition: color 0.2s ease;
}

.link-forgot:hover {
    color: #1a1a1a;
}

.btn-primary {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #2e3192;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.btn-custom {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #fff;
    color: #000;
    border: 1px #777 solid;
    border-radius: 8px;
  
    font-weight: 500;
    cursor: pointer;
       font-size: 0.875rem;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: #2563eb;
}

.separator {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}

.separator::before,
.separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #e5e7eb;
}

.separator-text {
    padding: 0 1rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.social-login {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.btn-social {
    flex: 1;
    padding: 0.75rem 1rem;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    transition: all 0.2s ease;
}

.btn-social:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
}

.btn-social svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.form-footer {
    text-align: center;
}

.signup-text {
    font-size: 0.875rem;
    color: #6b7280;
}

.link-signup {
    color: #374151;
    font-weight: 500;
    text-decoration: none;
    transition: text-decoration 0.2s ease;
}

.link-signup:hover {
    text-decoration: underline;
}

.visual-section {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.wave-background {
    position: absolute;
    top: 30px;
    right: 20px;
    bottom: 30px;
    left: 10px;
   
    background-image: url('back.png');
    background-size: cover;
    background-position: center;
    border-radius: 26px;
}

@media (max-width: 768px) {
    .page-wrapper {
        grid-template-columns: 1fr;
    }
    
    .visual-section {
        display: none;
    }
}
</style>