@import url('https://fonts.cdnfonts.com/css/inter');
@import url('https://fonts.cdnfonts.com/css/poppins');
@import url('https://fonts.cdnfonts.com/css/sf-pro-display');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    background: url('./../images/x-shadow.png') center/cover no-repeat, rgba(219, 222, 238, 1);
    background-position: right;
    background-size: 655px 945px;
    min-height: 100vh;
    overflow-x: hidden;
}

.brand-logo {
    width: 150px;
    margin: 30px 0 39px;
    display: block;
    opacity: 0.65;
}

.container {
    background: #fff;
    width: 1000px;
    border-radius: 8px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    padding: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.container-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    gap: 16px;
}

.form-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.section-title {
    font-size: 28px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: #000;
    margin-bottom: 32px;
}

.section-subtitle {
    font-weight: 400;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #000;
    margin-bottom: 32px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-button {
    width: 100%;
    height: 60px;
    font-size: 20px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    border-radius: 12px;
    cursor: pointer;
    background-color: #5570f1;
    border: none;
    color: #fff;
    cursor: pointer;
}

.form-button:disabled {
    opacity: 0.7;
}

.form-links-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.form-link {
    font-size: 14px;
    text-decoration: none;
    color: #5570f1;
}

.container-image {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  margin: auto;
}

#toast-container .toast {
    background-image: none !important;
    background-color: #37393F;
    border-radius: 8px;
    box-shadow: none;
    padding: 15px 20px;
    font-family: Poppins;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1;
    color: initial;
}

#toast-container > .toast:hover {
    box-shadow: none;
}

.toast-title {
    font-weight: 900;
    font-size: 14px;
    margin-bottom: 5px;
    font-family: Poppins;
}

.toast-message {
    font-weight: 600;
    font-size: 12px;
    line-height: 1.4;
    font-family: Poppins;
}

.toast-success {
    border-left-color: #00d58e !important;
    color: #00d58e !important;
}

.toast-error {
    border-left-color: #ff3d3d !important;
    color: #ff3d3d !important;
}

.toast-warning {
    border-left-color: #ffb32f !important;
    color: #ffb32f !important;
}

.toast-info {
    border-left-color: #488eff !important;
    color: #488eff !important;
}

.toast-progress {
    background-color: #fff !important;
}

.toast-close-button {
    color: #6b7280;
    font-weight: bold;
    font-size: 16px;
    opacity: 0.7;
}

.toast-close-button:hover {
    opacity: 1;
    color: #374151;
}


.custom-form-field-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    height: 58px;
    background-color: #ffffff;
    border-radius: 8px;
    position: relative;
}

.custom-form-field-wrapper.with-gray-bg {
    background-color: #F5F7FB;
}

.custom-form-field-wrapper.with-border {
    border: 1px solid #dfe9ff;
}

.custom-form-field-wrapper .field-control {
    color: #333;
    display: block;
    background-color: transparent;
    outline: none;
    border: none;
    margin-bottom: 8px;
    padding-left: 16px;
    padding-top: 30px;
    padding-right: 40px;
    padding-bottom: 0;
    width: 100%;
    border-radius: 8px;
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 600;
    font-size: 16px;
    font-weight: 600;
    transition: 0.2s;
}

.custom-form-field-wrapper .field-label {
    display: block;
    position: absolute;
    top: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #5E6366;
    padding: 16px;
    margin: 0;
    transition: 0.2s;
}

.custom-form-field-wrapper .field-control:focus + .field-label ,
.custom-form-field-wrapper .field-control:not(:placeholder-shown) + .field-label {
    top: -8px;
}

.password-field {
    position: relative;
}

.password-field .password-display-toggle {
    position: absolute;
    display: block;
    width: 32px;
    height: 32px;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}