:root{

    /* Primary Theme */
    --primary: #3e0960;
    --primary-hover: #3e0960;

    /* Background Colors */
    --bg-color: #f8fafc;
    --card-bg: rgba(255, 255, 255, 0.95);

    /* Text Colors */
    --text-main: #3e0960;
    --text-muted: #64748b;

    /* Border */
    --border-color: #e2e8f0;

}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{

    font-family: 'Outfit', sans-serif;

    background: var(--bg-color);
    color: var(--text-main);

    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 3rem 1rem;

    position: relative;

    overflow-x: hidden;

}

.shape{

    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    z-index: 0;

}



/* Purple Shape */

.shape-1{

    width: 500px;
    height: 500px;

    background: rgba(99, 102, 241, 0.15);

    top: -100px;
    left: -100px;

}



/* Pink Shape */

.shape-2{

    width: 400px;
    height: 400px;

    background: rgba(236, 72, 153, 0.10);

    position: fixed;

    bottom: -50px;
    right: -50px;

}

.container{

    width: 100%;
    max-width: 950px;

    background: var(--card-bg);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;

    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);

    overflow: hidden;

    position: relative;
    z-index: 10;

}

.header{

    padding: 3rem 2rem 2rem;

    text-align: center;

}



/* Company Logo */

.header img{

    height: 48px;

    margin-bottom: 15px;

    object-fit: contain;

}



/* Main Heading */

.header h1{

    font-size: 2.2rem;

    font-weight: 700;

    letter-spacing: -0.5px;

    color: var(--text-main);

    margin-bottom: 0.5rem;

}



/* Description */

.header p{

    font-size: 1.05rem;

    color: var(--text-muted);

}


.messages{

    padding: 0 3rem;

    margin-top: -1rem;
    margin-bottom: 1rem;

}



.alert{

    display: flex;
    align-items: center;
    gap: 0.75rem;

    padding: 1rem 1.25rem;

    border-radius: 10px;

    font-size: 0.95rem;
    font-weight: 500;

}



/* Error Message */

.alert-error{

    background: #fef2f2;

    color: #ef4444;

    border: 1px solid #fca5a5;

}


.form-section{

    padding: 2.5rem 3rem;

    background: rgba(255, 255, 255, 0.40);

    border-top: 1px solid var(--border-color);

}



/* Section Heading */

.form-section h2{

    display: flex;
    align-items: center;
    gap: 0.75rem;

    margin-bottom: 2rem;

    font-size: 1.35rem;
    font-weight: 600;

    color: var(--text-main);

}



/* Left Decorative Line */

.form-section h2::before{

    content: "";

    width: 4px;
    height: 24px;

    border-radius: 4px;

    background: var(--primary);

}

.grid{

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 1.5rem;

}



/* Full Width Field */

.full-width{

    grid-column: 1 / -1;

}


.form-group{

    position: relative;

    margin-top: 0.5rem;

}

.form-control{

    width: 100%;

    padding: 1rem 1.25rem;

    font-family: inherit;
    font-size: 1rem;

    color: #000000;

    background: rgba(255, 255, 255, 0.80);

    border: 1px solid var(--border-color);
    border-radius: 10px;

    transition: all 0.3s ease;

}



/* Input Focus */

.form-control:focus{

    outline: none;

    background: #ffffff;

    border-color: var(--primary);

    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.10);

}

.form-control + label{

    position: absolute;

    top: 50%;
    left: 1rem;

    transform: translateY(-50%);

    padding: 0 0.25rem;

    background: transparent;

    color: var(--text-muted);

    font-size: 0.95rem;

    pointer-events: none;

    transition: all 0.25s ease;

}



/* Move Label on Focus */

.form-control:focus + label,

.form-control:not(:placeholder-shown) + label,

select.form-control + label{

    top: 0;

    left: 0.8rem;

    padding: 0 0.25rem;

    background: #ffffff;

    border-radius: 4px;

    color: var(--primary);

    font-size: 0.75rem;

    font-weight: 600;

}


.required::after{

    content: " *";

    color: #ef4444;

}


select.form-control{

    appearance: none;

    padding-right: 2.5rem;

    background-repeat: no-repeat;

    background-position: right 1rem center;

    background-size: 1em;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

}


.actions{

    display: flex;

    justify-content: flex-end;

    align-items: center;

    gap: 1.5rem;

    padding: 2.5rem 3rem;

    background: rgba(248, 250, 252, 0.80);

    border-top: 1px solid var(--border-color);

}


.btn{

    padding: 0.875rem 2.5rem;

    border: none;

    border-radius: 10px;

    font-family: inherit;

    font-size: 1.05rem;

    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;

}



/* Primary Button */

.btn-primary{

    color: #ffffff;

    background: var(--primary);

    box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.20);

}



.btn-primary:hover{

    background: var(--primary-hover);

    transform: translateY(-2px);

    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.30);

}



/* Secondary Button */

.btn-secondary{

    padding: 0.875rem 1rem;

    color: var(--text-muted);

    background: transparent;

    border: 1px solid transparent;

    text-decoration: none;

}



.btn-secondary:hover{

    color: var(--primary);

}

.submit-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 2.5rem 3rem 3rem;
}


.submit-btn{

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 16px 42px;

    border: none;
    border-radius: 50px;

    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;

    color: #ffffff;

    cursor: pointer;

    background: linear-gradient(135deg,#ac3124,#3e0960);

    box-shadow: 0 12px 25px rgba(99,102,241,.30);

    transition: all .35s ease;
}


.submit-btn svg{

    width: 20px;
    height: 20px;

    transition: transform .35s ease;

}


.submit-btn:hover{

    transform: translateY(-4px);

    box-shadow: 0 18px 35px rgba(99,102,241,.40);

}


.submit-btn:hover svg{

    transform: translateX(6px);

}


.submit-btn:active{

    transform: scale(.97);

}

.submit-wrapper{

    padding: 2rem 1.5rem;

}

.submit-btn{

    width: 100%;
    max-width: 320px;

}