* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

:root {
    --primary-color: ;
    --secondary-color: ;
    --font: ;
    --text-color: ;
}
body {
    background: linear-gradient(135deg, #e3f0ff 0%, #f8faff 100%);
    min-height: 100vh;
}
* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}


/* Navbar Styling */
.navbar {
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    border-radius: 12px;
    margin-top: 4px;
    background: #fff !important;
    padding: 0.75rem 1.5rem;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #2d3748 !important;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    font-size: 1.1rem;
    color: #4a5568 !important;
    margin-right: 1rem;
    transition: color 0.2s;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: #007bff !important;
    font-weight: 600;
}

.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler-icon {
    background-color: #e2e8f0;
    border-radius: 4px;
}

/* Main Section Card Styling */
.form_area {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 2rem 2.5rem;
}

.title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form_group {
    margin-bottom: 1.2rem;
}

.sub_title {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
    display: block;
}

.form_style, .form-select {
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    padding: 0.6rem 1rem;
    font-size: 1rem;
    background: #f7fafc;
    transition: border-color 0.2s;
}

.form_style:focus, .form-select:focus {
    border-color: #007bff;
    background: #fff;
    outline: none;
}

.btn {
    width: 100%;
    background: linear-gradient(90deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.7rem 0;
    border: none;
    transition: background 0.2s;
}

.btn:hover {
    background: linear-gradient(90deg, #0056b3 0%, #007bff 100%);
}
.form_area {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #EDDCD9;
    height: auto;
    width: auto;
    border: 2px solid #264143;
    border-radius: 20px;
    box-shadow: 3px 4px 0px 1px #E99F4C;
}

.title {
    color: #264143;
    font-weight: 900;
    font-size: 1.5em;
    margin-top: 20px;
}

.sub_title {
    font-weight: 600;
    margin: 5px 0;
}

.form_group {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    margin: 10px;
}

.form_style {
    outline: none;
    border: 2px solid #264143;
    box-shadow: 3px 4px 0px 1px #E99F4C;
    width: 290px;
    padding: 12px 10px;
    border-radius: 4px;
    font-size: 15px;
}
.form-select{
    padding: 8px 12px;
}
.form_style:focus,
.btn:focus ,
.btn2:focus{
    transform: translateY(4px);
    box-shadow: 1px 2px 0px 0px #E99F4C;
}

.btn {
    padding: 15px;
    margin: 25px 0px;
    width: 290px;
    font-size: 15px;
    background: #264143;
    border-radius: 10px;
    font-weight: 800;
    box-shadow: 3px 3px 0px 0px #E99F4C;
    color: #fff;
}
.btn2{
    padding: 6px 15px;
    border: 0;
    background-color: #fff;
    color: black;
    margin: 5px 0px;
    width: 98%;
}
.btn:hover , .btn2:hover{
    opacity: .9;
}

.link {
    font-weight: 800;
    color: #264143;
    padding: 5px;
}

.btnn {
    background: linear-gradient(90deg, #4f8cff 0%, #38c6ff 100%);
    color: #fff !important;
    border: none;
    font-weight: 600;
    padding: 8px 28px;
    border-radius: 8px;
    font-size: 1.08rem;
    box-shadow: 0 2px 8px rgba(79, 140, 255, 0.07);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    letter-spacing: 0.5px;
}

.btnn:hover,
.btnn:focus {
    background: linear-gradient(90deg, #38c6ff 0%, #4f8cff 100%);
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(79, 140, 255, 0.18);
    outline: none;
}

.btn-outline-success {
    background: transparent;
    color: #4f8cff !important;
    border: 2px solid #4f8cff;
    transition: background 0.2s, color 0.2s, border 0.2s;
}

.btn-outline-success:hover,
.btn-outline-success:focus {
    background: #4f8cff;
    color: #fff !important;
    border: 2px solid #38c6ff;
}