* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: mestika; */
    
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.background{
    width: 100%;
    height: 100vh;
    background-image: url("../chocolates/imp/background.jpeg");
    background-size:cover;
    background-position: top;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background-color: rgba(64, 17, 13, 0.7);
    padding: 40px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    transition: 0.5s ease-in-out;
}

.login-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #f4eee9;
    font-family: mestika;
}

.input-group {
    margin-bottom: 20px;
    width: 100%;
}

label {
    font-size: 14px;
    color: #f4eee9;
    font-family: poppins thin;
}

input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #d9bca3;
    border-radius: 8px;
    margin-top: 5px;
    outline: 0;
}
input:focus{
    border-color: #8c071f;
}

button.submit-btn {
    background-color: #d9bca3;
    color: #40110d;
    width: 100%;
    padding: 10px;
    margin: 12px 0px 8px 0px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    font-family: poppins;
}

button.submit-btn:hover {
    background-color:#8c071f ;
    color: #f4eee9;
    transform: scale(1.03);
    transition: 0.5s ease-in-out;
}
.error-message{
    color: #d9bca3;
    font-family: poppins;
    font-size: 12px;
}

#loading-spinner {
    display: none;
    margin: 15px auto 0;
    width: 60px;
}

#loading-spinner svg {
    width: 100%;
    height: auto;
}

@keyframes dashMove {
    0% {
      stroke-dashoffset: 685;
    }
    100% {
      stroke-dashoffset: -685;
    }
}
  
.animated-path {
    animation: dashMove 2s linear infinite;
}
  

.social-message {
    display: flex;
    align-items: center;
    padding-top: 1rem;
}
  
.line {
    height: 1px;
    flex: 1 1 0%;
    background-color: #f4eee9;
}
  
.social-message .message {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    font-size: 0.99rem;
    line-height: 1.25rem;
    color: #f4eee9;
    font-family: mestika;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
}
  
.social-icons .icon {
    border-radius: 0.125rem;
    padding: 0.75rem;
    border: none;
    background-color: transparent;
    margin-left: 8px;
}
  
.social-icons .icon i {
    height: 1.25rem;
    width: 1.25rem;
    color: #d9bca3;
    transition: all 0.7s ease-in-out;
}

.icon i:hover{
    cursor: pointer;
    color: #f4eee9;
    transform: scale(1.3);
    transition: 0.7s ease-in-out;
}
  
.signup {
    text-align: center;
    font-size: 0.85rem;
    line-height: 1rem;
    color: #f4eee9;
    font-family: mestika;
}
.signup a {
    color: #f4eee9;
    text-decoration: none;
    font-size: 14px;
    font-family: poppins thin;
}
  
.signup a:hover {
    text-decoration: underline #d9bca3;
}
  




/* /////////////REGISTER STYLE/////////////// */

.name{
    display: flex;
    gap: 10px;
}