

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


.contanir{
    width: 100%;
    height: 80px;
    /* background-color: rgb(230, 224, 224); */
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
}


header{
    width: 100%;
    height:100px;
    overflow: hidden;
    background-color: white;
  padding-left: 50px;

}


.reg{
    width: 100%;
    height: 80vh;
 

    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    
}
.conttener{
    width: 75%;
    height: 550px;
  margin-top: 0px;
     border: 1px solid rgb(135, 241, 255);
    display: flex;
    justify-content: center;
    align-items: center;
      box-shadow: 4px 4px 9px rgb(100, 224, 255);

}



.sec_logo {
      width: 50%;
    height: 100%;


  background-image: url(./image/nav/sccf.png);
  background-size: cover;
  
    text-align: center;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.welcome-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff; 
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(14, 165, 233, 0.1);
}


.welcome-subtitle  {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff; 
    margin-bottom: 40px;
    opacity: 0.85;
}

.d-img {
    width: 250px;
    height: 250px;
    background-image: url(./image/nav/lonn.png);
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    margin: 0 auto; 
    
    
    border: 3px solid rgba(186, 230, 253, 0.6); 
    
    
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.5), 
                inset 0 0 15px rgba(255, 255, 255, 0.4);
                
    
    animation: floatAndRotate 10s ease-in-out infinite alternate;
    transition: all 0.2s ease;
}


.d-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(14, 165, 233, 0.8), 
                inset 0 0 20px rgba(255, 255, 255, 0.6);
    border-color: rgba(56, 189, 248, 0.9);
    cursor: pointer;
}


@keyframes floatAndRotate {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(3deg); 
    }
    100% {
        transform: translateY(0) rotate(-9deg);
    }
}
.sec-form{
     width: 50%;
    height: 100%;
    padding: 20px;
    text-align: center;
    background-color: white;

      
   

}


.sec-form form input{
    
    width: 100%;
    height: 40px;
    border-radius: 15px;
    margin: 5px 0px;
  outline: none;
  border: none;
 
    padding: 8px;
    box-shadow: 4px 4px 9px rgb(107, 222, 245);

}
.sec-form form input:hover{
    border-bottom: 2px solid rgb(102, 159, 243);
}
.sec-form form input[type="submit"]{
    background-color: rgb(75, 172, 252);
    color: aliceblue;
    cursor: pointer;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}
.sec-form form input[type="submit"]:hover{
    background-color: white;
    border: none;
    color: black;
}
.message{
    position: fixed;
    top: 30%;
    left: 40%;
    padding: 12px 20px;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    display: none;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: fade 0.3s ease;
}

.message.error{
    background: #dc3545;
}

.message.success{
    background: #28a745;
}

@keyframes fade{
    from{
        opacity: 0;
        transform: translateY(-10px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
.accn{
   
    color: rgb(14, 195, 255);
}
 
.inn{
    position: relative;
    left: 45%;
    bottom: 30px;
    color: #747474;
}