 /* Load the Bold weight */
@font-face {
    font-family: 'SairaSemi';
    src: url('./fonts/SairaSemiCondensed-Bold.ttf') format('truetype');
    /* Use 'truetype' or the correct format */
    font-weight: 700;
    /* Bold */
    font-style: normal;
}

/* Load the Regular weight */
@font-face {
    font-family: 'SairaSemi';
    src: url('./fonts/SairaSemiCondensed-Regular.ttf') format('truetype');
    font-weight: 400;
    /* Regular */
    font-style: normal;
}

/* Load the Medium weight */
@font-face {
    font-family: 'SairaSemi';
    src: url('./fonts/SairaSemiCondensed-Medium.ttf') format('truetype');
    font-weight: 500;
    /* Medium */
    font-style: normal;
}

/* Load the SemiBold weight */
@font-face {
    font-family: 'SairaSemi';
    src: url('./fonts/SairaSemiCondensed-SemiBold.ttf') format('truetype');
    font-weight: 600;
    /* SemiBold */
    font-style: normal;
}

/* Load the Light weight */
@font-face {
    font-family: 'SairaSemi';
    src: url('./fonts/SairaSemiCondensed-Light.ttf') format('truetype');
    font-weight: 300;
    /* Light */
    font-style: normal;
}
 /* Basic reset and global styling */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'SairaSemi', sans-serif;
    
}

body {
    min-height: 100vh;
    background-color: #f0f0f0;
    padding: 0px;
    font-family: 'SairaSemi', sans-serif;
}
.footer{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    padding: 20px;
}
a{
    text-decoration: none;
    color: #129e15;
}
p{
    text-align: center;
}
.p2n{
    font-size: 15px;
    padding: 15px;
}
.links{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 16px;
    color: #3C0867;
    background-color: #fbfbfb;
    padding: 8px 30px;
    border-radius: 25px;
    border: 1px solid rgb(232, 232, 232);
}
.links img{
    width: 100%;
    height: auto;
    max-width: 20px;
}
.sepa{
    margin-top: 40px;
    width: 100%;
    height: 1px;
    background-color: #dadada;
}
.header {
    background: #2D094F;
    background: linear-gradient(90deg, #2d094f 0%, #8941c7 50%, #2d094f 100%);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0px;
    text-align: center;
}

.header h1 {
    color: #fff;
    line-height: 1;
    font-family: 'SairaSemi', sans-serif;
}
.header p{
    color: #fff;
    font-size: 11px;
    line-height: 1;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 650px;
    margin: 0 auto;
    padding: 20px 40px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}
.h2n{
    text-align: center;
    font-family: 'SairaSemi', sans-serif;
    color:  #129e15;
}
/* Form container */
form {
    padding: 20px;
    width: 600px;
    transition: transform 0.3s ease-in-out;
}

/* Label styling */
label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    font-size: 13px;
}

/* Input fields styling */
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.2s;
    max-width: 600px;
    
}
textarea{
    resize: vertical;
    min-height: 100px;
    max-height: 200px;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: #129e15;
    outline: none;
}

/* Button styling */
button {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

/* Responsive design */
@media (max-width:768px) {
    .container {
        padding: 15px 10px;
        margin: 10px;
        border-radius: 1rem;
        max-width: 400px;
    }
    h1 {
        font-size: 1.2rem;
        padding-left: 10px;
    }
    .h2n{
        font-size: 18px;
    }
    form {
        padding: 10px;
        max-width: 300px;
    }
    .p2n{
        font-size: 13px;
    }
    label{
        font-size: 12px;
    }
    input[type="text"],
    input[type="email"],
    textarea {
        padding: 7px;
        font-size: 13px;
        width: 100%;
    }

    button {
        padding: 10px;
        font-size: 14px;
    }

    .footer{
        flex-wrap: wrap;
        gap: 10px;
    }
    .links{
        padding: 4px 20px;
        font-size: 13px;
    }
    .links img{
        max-width: 16px;
    }
    .header{
        padding: 10px 0px;
    }
}

