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

body {
    font-family: 'Inter', sans-serif;
    background-color: #f5f5f5;

}

.app-container {
    padding: 20px 30px;
}

.form-title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 64px;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
}

.vacancy-info {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 20px;
    left: 30px;
}

.vacancy-position {
    font-size: 14px;
}

.company-name {
    font-size: 18px;
}

.main-content {
    display: flex;
    gap: 200px;
    margin-top: 50px;
}

.container {
    display: flex;
    width: 40%;
}

.info-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.title {
    font-size: 28px;
    margin-bottom: 10px;
}

.text {
    font-size: 18px;
}

.info-btn {
    text-decoration: none;
    color: black;
    font-size: 16px;
}

.candidate-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}


.form-input {
    width: 100%;
    padding: 8px 0;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid black;
    background: transparent;
    outline: none;
    transition: border-color 0.3s ease;
}


.form-input::placeholder {
    color: #9E9E9E;
}

.form-group {
    margin-bottom: 16px;
}

.btn-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.btn-container {
    margin-top: 100px;
}


.question-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 40%;
}

.question-warning {
    width: 100%;
}


/* Стили для таймера */
.timer-container {
    margin-bottom: 15px;
    text-align: left;
}

.recorder-controls {
    display: flex;
    justify-content: space-between;
}

.recorder-button {
    background-color: #cccccc;
    color: black;
    border: 1px solid #a5a5a5;
    padding: 10px 15px;
    margin-right: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.recorder-button:hover {
    background-color: #afafaf;
}

.recorder-button:disabled {
    background-color: #E5E5E5;
    color: #444444;
    cursor: not-allowed;
}

.video-container {
    margin-bottom: 15px;
    background: #f5f5f5;
    padding: 10px;
    border-radius: 4px;
}

.recording-status {
    margin-top: 10px;
    font-size: 14px;
}

.recording-timer {
    font-size: 14px;
    color: #666;
}

.recording-active {
    border: 3px solid #4CAF50 !important;
    /* Зеленая рамка для активной записи */
}