*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../img/bo.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#loading-screen{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a0f0a;

    display: none;

    justify-content: center;
    align-items: center;
    flex-direction: column;

    z-index: 9999;
}

.loader{
    width: 60px;
    height: 60px;

    border: 6px solid rgba(255,255,255,0.2);
    border-top: 6px solid #ffb362;

    border-radius: 50%;

    animation: spin0 1s linear infinite;
}

@keyframes spin0{

    0%{
        transform: rotate(0deg);
    }

    100%{
        transform: rotate(360deg);
    }
}

#loading-screen p{
    margin-top: 20px;
    color: #ffb362;
    font-size: 1.2rem;
}

.container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.form-box{
  margin: 0 auto;
  padding: 2em;
  background-color: #2a0d04;
  border-radius: 10px;
  position: relative;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

@property --angle{
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.form-box::after, .form-box::before{
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: conic-gradient(from var(--angle), #ff4545, #00ff99, #006aff, #ff0095, #ff4545);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  padding: 3px;
  border-radius: 10px;
  animation: 3s spin linear infinite;
}

@keyframes spin{
  from{
    --angle: 0deg;
  }
  to{
    --angle: 360deg;
  }
}

.form-box::before{
  filter: blur(1.5rem);
  opacity: 0;
  transition: opacity 0.3s ease;
}


.form-box h1{
    font-size: 28px;
    font-weight: 700;
    color: #ff8c32;
    letter-spacing: 1px;
    text-shadow:
        0 0 5px rgba(255,140,50,0.8),
        0 0 15px rgba(255,140,50,0.6),
        0 0 25px rgba(255,140,50,0.4);
    transition: all 0.3s ease;
    text-align: center;
    margin-bottom: 10px;
}

.form-box h1:hover{
    text-shadow:
        0 0 10px rgba(255,140,50,1),
        0 0 20px rgba(255,140,50,0.8),
        0 0 40px rgba(255,140,50,0.6);
}


.form-box p{
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

label{
    display: block;
    margin-bottom: 8px;
    margin-top: 15px;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow:
        0 0 5px rgba(255,140,50,0.8),
        0 0 15px rgba(255,140,50,0.6),
        0 0 25px rgba(255,140,50,0.4);
}

input{
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    outline: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

input:hover{
    transform: translateY(-5px) ;
    background: #ffb362;
    transform: translateY(-5px) ;
    box-shadow: 0 10px 25px rgba(255, 179, 98, 0.4);
}

input:focus{
    border-color: #000000;
}

button{
    width: 100%;
    padding: 14px;
    margin-top: 25px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #fc7311, #ffb347);
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;

    box-shadow:
        0 0 10px rgba(252,115,17,0.4),
        0 0 20px rgba(252,115,17,0.2);
}


button:hover{
    transform: translateY(-3px);

    box-shadow:
        0 0 15px rgba(252,115,17,0.7),
        0 0 30px rgba(252,115,17,0.5),
        0 0 45px rgba(252,115,17,0.3);

    background: linear-gradient(135deg, #ff8c32, #ffc857);
}

button:active{
    transform: translateY(1px);
}