body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

.welcome-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    background-color: rgba(8, 159, 253, 0.632);
    font-stretch: expanded;
    color: rgb(248, 248, 248);
    padding: 20px;
    box-shadow: 0 0 20px rgb(244, 244, 244);
    border-color: antiquewhite;
    transition: border-color 0.3s ease;
}



.logo:hover {
    outline: 3px solid rgb(255, 255, 255);
    transition: border-color 0.3s ease;
}

.logo {
    width: 200px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
}

.logo-container
{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.brand-floxen {
    font-weight: 700;
    letter-spacing: 0.6px;

    /* Gradient text */
    background: linear-gradient(
        90deg,
        #4f7cff,
        #6a5cff,
        #7b61ff
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Black border (stroke) */
    -webkit-text-stroke: 1px #000000;

    /* Soft neon glow */
    text-shadow:
        0 0 6px rgba(100, 120, 255, 0.45),
        0 0 14px rgba(120, 90, 255, 0.35),
        0 0 22px rgba(140, 80, 255, 0.2);
}


.brand-study {
    color: inherit;
}

.welcome-section h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.welcome-section p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.button-f {
    padding-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
    font-size: 1.1em;
    color: white;
    width: 30%;
    background-color: #11023b;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.button-f:hover {
    outline: 3px solid rgb(255, 255, 255);
    transition: border-color 0.3s ease;
}

.grasp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #11023b;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.background-clip {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.dropdown-container {
    margin: 20px 0;
    text-align: center;
}

.flash-container {
    margin: 15px 0;
    width: 100%;
    text-align: center;
}

.flash {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    animation: fadeIn 0.3s ease-in-out;
}

/* Error message */
.flash-danger {
    background: rgba(255, 77, 77, 0.15);
    color: #b30000;
    border: 1px solid rgba(255, 77, 77, 0.4);
}

/* Success message */
.flash-success {
    background: rgba(46, 204, 113, 0.15);
    color: #1e8449;
    border: 1px solid rgba(46, 204, 113, 0.4);
}

/* Smooth appearance */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.p {
    color: #11023b;
}
.main-container{
    background-color: white;
}
label {
    font-size: 18px;
    color: #fafafa;
    margin-right: 10px;
    display: inline-block;
    margin-bottom: 5px;
}

#register-section, #About {
  display: inline-block;
  vertical-align: top;
}

#register-section {
  width: 40%;
  margin-top: 50px;
  padding-top: 50px;
  padding-bottom: 20px;
}

#About {
  width: 50%;
  margin-top: 30px;
  padding-left: 20px;
}

.About {
  display: inline-block;
  max-width: 100%;
  margin-right: 15px;
  padding-left: 6%;
  border-width: 2px;
}

.About p {
  font-size: medium;
  line-height: 1.5;
}

.About h3 {
  margin-bottom: 15px;
}

select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 3px solid #3c3030dc;
  border-radius: 14px;
  background-color: rgb(169, 187, 187);
  color: #604545;
  box-shadow: 0 0 10px rgba(209, 207, 207, 0.1);
  transition: border-color 0.3s ease;
}


.main-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  height: 90vh;
}

.container p {
  color: aliceblue;
}

.container {
  background-color: rgba(237, 235, 235, 0.685);
  background-image: linear-gradient(to right, blue, rgb(255, 255, 255));
  padding: 30px;
  padding-top: 2px;
  padding-bottom: 10px;
  display: inline-block;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(209, 207, 207, 0.1);
  margin-bottom: 20px;
  margin-left: 3%;
  max-width: 400px;
  max-height: fit-content;
  z-index: 110;
  position: relative;
  transition: border-color 1.3s ease;
}

select:focus {
  border-color: #11023b;
  outline: none;
  box-shadow: 0 0 10px rgba(209, 207, 207, 0.1);
  transition: border-color 0.3s ease;
}

#register-form {
  margin-left: 10px;
}

form select {
  margin-bottom: 15px;
}

select:hover {
  cursor: pointer;
}

form {
  box-shadow: 0 0 10px rgba(240, 216, 216, 0);
  transition: border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

input, button {
  cursor: pointer;
  padding: 10px;
  margin: 5px 0;
  border: 3px solid #11023b;
  border-radius: 14px;
  transition: border-color 0.3s ease;
}
.con {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;   /* THIS is the key fix */
    margin-top: 30px;
}
.fa-paste,.fa-circle-user,.fa-stopwatch{
  font-size: 50px;
  margin-left: 2px;
  color: rgb(186, 237, 240);
}
.works h1{
  background: linear-gradient(90deg,#4c00ff,#ff00c3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.works{
  /*margin-bottom: 28%;*/
  margin-left: 2%;
}
.section {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 20px;
    width: 280px;     /* Stable card width */
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.section h1 {
    font-size: 22px;
}

.section p {
    font-size: 14px;
    margin-top: 10px;
}

.pa {
    font-size: 34px;
    color: #4f7cff;
    margin-top: 12px;
}
.objectiv{
  width:auto;
  object-fit: cover;
  height:50%;

}
.section:nth-child(1) {
  background-color: blue;
}
.content h1{
  text-decoration: underline overline double rgb(0, 216, 119);
}
.section:nth-child(2) {
  background-color: #0569ff
}

.section:nth-child(3) {
  background-color: rgb(0, 162, 255);
}

.content {
  padding: 20px;
  background-color: white;
  border-radius: 10px;
}

.site-footer {
    margin-top: 60px;
    padding: 25px 15px;
    background: rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(6px);
    text-align: center;
    font-size: 14px;
    color: #444;
}

.footer-content {
    max-width: 1000px;
    margin: auto;
}

.footer-links {
    margin-top: 8px;
}

.footer-links a {
    color: #4f7cff;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-links span {
    margin: 0 8px;
    color: #888;
}
