/* HTML Email Form  */
body {
    margin: 0;
}

.otp-all-wrapper {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #f6f6f6;
    font-family: "Arial";
}

.amat-logo {
    background-image: url("/wp-content/uploads/2025/07/applied-smartfactory-logo-primary.svg");
    width: 170px;
    height: 100px;
    background-position: center;
    background-repeat: no-repeat;
}

.otp-verification-form {
    background: #fff;
    padding: 14px 30px;
    box-sizing: border-box;
    border-radius: 18px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    width: 90%;
    max-width: 420px;
    margin: 30px 0;
    min-height: 236px;
}

input {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    margin: 10px 0;
}

button {
    background-color: #347DA2;
    border-radius: 10px;
    color: #ffffff;
    padding: 12px;
    width: 100%;
    border: 0;
    margin: 10px 0;
}

.error-msg {
    margin: 0;
    font-size: 14px;
    font-style: italic;
}

.amat-go-back-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}