/* Body and container styles */
body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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

.form-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 450px;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h1 {
    color: #151717;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.form-header p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

/* Flash messages */
.flash-messages {
    margin-bottom: 20px;
}

.flash-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 4px solid;
}

.flash-message.flash-error {
    background-color: #fef2f2;
    color: #dc2626;
    border-left-color: #ef4444;
}

.flash-message.flash-warning {
    background-color: #fffbeb;
    color: #d97706;
    border-left-color: #f59e0b;
}

.flash-message.flash-info {
    background-color: #eff6ff;
    color: #2563eb;
    border-left-color: #3b82f6;
}

.flash-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flash-content i {
    font-size: 16px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
  
  ::placeholder {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }
  
  .form button {
    align-self: flex-end;
  }
  
  .flex-column > label {
    color: #151717;
    font-weight: 600;
  }
  
  .inputForm {
    border: 1.5px solid #ecedec;
    border-radius: 10px;
    height: 50px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    transition: 0.2s ease-in-out;
    background-color: #fafafa;
}
  
  .input {
    margin-left: 10px;
    border-radius: 10px;
    border: none;
    width: 100%;
    height: 100%;
    background: transparent;
    font-size: 14px;
}
  
  .input:focus {
    outline: none;
}
  
  .inputForm:focus-within {
    border: 1.5px solid #2d79f3;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(45, 121, 243, 0.1);
}

/* OTP specific styles */
input[name="otp"] {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
}

input[name="otp"]::placeholder {
    letter-spacing: 1px;
}
  
  .flex-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
  }
  
  .flex-row > div > label {
    font-size: 14px;
    color: black;
    font-weight: 400;
  }
  
  .span {
    font-size: 14px;
    margin-left: 5px;
    color: #2d79f3;
    font-weight: 500;
    cursor: pointer;
  }
  
  .button-submit {
    margin: 20px 0 10px 0;
    background-color: #151717;
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    height: 50px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button-submit:hover {
    background-color: #2d79f3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 121, 243, 0.3);
}

.button-submit:active {
    transform: translateY(0);
}
  
  .p {
    text-align: center;
    color: black;
    font-size: 14px;
    margin: 5px 0;
  }
  
  .btn {
    margin-top: 10px;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    gap: 10px;
    border: 1px solid #ededef;
    background-color: white;
    cursor: pointer;
    transition: 0.2s ease-in-out;
  }
  
  .btn:hover {
    border: 1px solid #2d79f3;
    ;
  }
  
      